aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAnand Buddhdev2012-01-11 23:44:33 +0100
committerAdam Vandenberg2012-01-11 20:18:52 -0800
commit2e37e97af863631b05b7f20c7dcb00136d66b051 (patch)
tree070d03cafc7338a66185cf52604f22dabe81c47c /Library
parente404417d5aac14292be1ab148d208c68db82a325 (diff)
downloadhomebrew-2e37e97af863631b05b7f20c7dcb00136d66b051.tar.bz2
ldns 1.6.12
Fixes a major date-related bug. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ldns.rb18
1 files changed, 3 insertions, 15 deletions
diff --git a/Library/Formula/ldns.rb b/Library/Formula/ldns.rb
index 012e596b6..f2b442b96 100644
--- a/Library/Formula/ldns.rb
+++ b/Library/Formula/ldns.rb
@@ -1,25 +1,13 @@
require 'formula'
class Ldns < Formula
- url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.11.tar.gz'
+ url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.12.tar.gz'
homepage 'http://nlnetlabs.nl/projects/ldns/'
- sha1 '2c4537eee39a1af63e8dde4f35498ce78c968c1f'
+ sha1 '1d61df0f666908551d5a62768f77d63e727810aa'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-gost"
+ system "./configure", "--prefix=#{prefix}", "--disable-gost", "--with-drill", "--with-examples"
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