blob: f7f0c35257b607f6149aee216974d6682596cf87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Ldns < Formula
homepage 'http://nlnetlabs.nl/projects/ldns/'
url 'http://nlnetlabs.nl/downloads/ldns/ldns-1.6.13.tar.gz'
sha1 '859f633d10b763f06b602e2113828cbbd964c7eb'
option "python", "Build Python pydns bindings"
depends_on 'swig' if build.include? 'python'
def install
# gost requires OpenSSL >= 1.0.0
args = %W[
--prefix=#{prefix}
--disable-gost
--with-drill
]
args << "--with-pyldns" if build.include? 'python'
system "./configure", *args
system "make"
system "make install"
system "make install-pyldns" if build.include? 'python'
end
end
|