Added ldns 1.6.5

Signed-off-by: David Höppner <0xffea@gmail.com>
master
Holger Just 2010-08-09 11:18:48 +02:00 committed by David Höppner
parent 1e9d62f415
commit 674fb422c9
1 changed files with 18 additions and 0 deletions

18
Formula/ldns.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Ldns <Formula
url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.5.tar.gz'
homepage 'http://nlnetlabs.nl/projects/ldns/'
sha1 '267eea7a8a7af5a373aed6c26084ed9e43bddc4d'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
Dir.chdir('drill') do
system "./configure", "--prefix=#{prefix}", "--with-ldns=#{prefix}"
system "make"
system "make install"
end
end
end