From 81594e180fa8af8b1c82bef0a158e18a029381cb Mon Sep 17 00:00:00 2001 From: Anand Buddhdev Date: Sun, 18 Sep 2011 00:06:28 +0300 Subject: 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 --- Library/Formula/ldns.rb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'Library/Formula/ldns.rb') 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 -- cgit v1.2.3