homebrew-core/Formula/ldns.rb
Anand Buddhdev 99f2660051 ldns 1.6.12
Fixes a major date-related bug.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-11 20:18:52 -08:00

13 lines
375 B
Ruby

require 'formula'
class Ldns < Formula
url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.12.tar.gz'
homepage 'http://nlnetlabs.nl/projects/ldns/'
sha1 '1d61df0f666908551d5a62768f77d63e727810aa'
def install
system "./configure", "--prefix=#{prefix}", "--disable-gost", "--with-drill", "--with-examples"
system "make"
system "make install"
end
end