aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAnand Buddhdev2011-09-18 00:06:28 +0300
committerJack Nagel2011-09-18 16:31:52 -0500
commit81594e180fa8af8b1c82bef0a158e18a029381cb (patch)
tree5b3cf8baf0a6f8329d81fd8f16d96009eeabfb0a /Library
parent3888e1243f2d1568a9982e5235325627eef2a4b5 (diff)
downloadhomebrew-81594e180fa8af8b1c82bef0a158e18a029381cb.tar.bz2
ldns 1.6.10
This update bumps up the version number of ldns to 1.6.10. I also added "--disable-gost", as the openssl shipping with OSX doesn't support this. Finally, I also added a few lines to build and install the ldns example tools. Closes #7695. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ldns.rb13
1 files changed, 10 insertions, 3 deletions
diff --git a/Library/Formula/ldns.rb b/Library/Formula/ldns.rb
index b7a768b48..889501d10 100644
--- a/Library/Formula/ldns.rb
+++ b/Library/Formula/ldns.rb
@@ -1,18 +1,25 @@
require 'formula'
class Ldns < Formula
- url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.5.tar.gz'
+ url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.10.tar.gz'
homepage 'http://nlnetlabs.nl/projects/ldns/'
- sha1 '267eea7a8a7af5a373aed6c26084ed9e43bddc4d'
+ sha1 '7798a32c6f50a4fb7d56ddf772163dc1cb79c1a4'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--disable-gost"
system "make"
system "make install"
+
Dir.chdir('drill') do
system "./configure", "--prefix=#{prefix}", "--with-ldns=#{prefix}"
system "make"
system "make install"
end
+
+ Dir.chdir('examples') do
+ system "./configure", "--prefix=#{prefix}", "--with-ldns=#{prefix}", "--disable-gost"
+ system "make"
+ system "make install"
+ end
end
end