homebrew-core/Formula/ldns.rb

14 lines
375 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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