homebrew-core/Formula/ldns.rb

36 lines
939 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ldns < Formula
homepage 'http://nlnetlabs.nl/projects/ldns/'
url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.17.tar.gz'
sha1 '4218897b3c002aadfc7280b3f40cda829e05c9a4'
revision 1
2014-03-25 15:36:17 +00:00
bottle do
2014-08-25 10:54:13 +00:00
revision 3
sha1 "29548cdff439f712695fc5ca9f662b958ce98765" => :mavericks
sha1 "e55a981bf3a3ce87f914043c36c6c1eb0a0d9b38" => :mountain_lion
sha1 "ba53827d4834ae71cb66c437f16e631cde014cff" => :lion
2014-03-25 15:36:17 +00:00
end
depends_on :python => :optional
2014-05-23 20:23:28 +00:00
depends_on 'openssl'
depends_on 'swig' => :build if build.with? 'python'
def install
2012-06-19 03:16:43 +00:00
args = %W[
--prefix=#{prefix}
--with-drill
2014-05-23 20:23:28 +00:00
--with-ssl=#{Formula["openssl"].opt_prefix}
2012-06-19 03:16:43 +00:00
]
2014-01-04 13:07:59 +00:00
args << "--with-pyldns" if build.with? 'python'
2012-06-19 03:16:43 +00:00
system "./configure", *args
system "make"
system "make install"
system "make", "install-pyldns" if build.with? 'python'
2014-05-02 16:11:47 +00:00
(lib/"pkgconfig").install "packaging/libldns.pc"
end
end