86 lines
2.6 KiB
Ruby
86 lines
2.6 KiB
Ruby
class Unbound < Formula
|
|
desc "Validating, recursive, caching DNS resolver"
|
|
homepage "https://www.unbound.net"
|
|
url "https://www.unbound.net/downloads/unbound-1.6.2.tar.gz"
|
|
sha256 "1a323d72c32180b7141c9e6ebf199fc68a0208dfebad4640cd2c4c27235e3b9c"
|
|
|
|
bottle do
|
|
sha256 "58236b81d6e98f4805ec71fb6603995dc048679447f65ae161c7d1d44a51a8c0" => :sierra
|
|
sha256 "3612fe5245380d35cdbf8c096c9224412a3bca51bacc2f2fe6728a43605f1d47" => :el_capitan
|
|
sha256 "5441a7db0c9e1891fdbf33bdf79738706c0c80dbe0b86ba4d4d2dc5505ecca30" => :yosemite
|
|
end
|
|
|
|
depends_on "openssl"
|
|
depends_on "libevent"
|
|
|
|
depends_on :python => :optional
|
|
depends_on "swig" if build.with?("python")
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}
|
|
--with-libevent=#{Formula["libevent"].opt_prefix}
|
|
--with-ssl=#{Formula["openssl"].opt_prefix}
|
|
]
|
|
|
|
if build.with? "python"
|
|
ENV.prepend "LDFLAGS", `python-config --ldflags`.chomp
|
|
|
|
args << "--with-pyunbound"
|
|
args << "--with-pythonmodule"
|
|
args << "PYTHON_SITE_PKG=#{lib}/python2.7/site-packages"
|
|
end
|
|
|
|
args << "--with-libexpat=#{MacOS.sdk_path}/usr" unless MacOS::CLT.installed?
|
|
system "./configure", *args
|
|
|
|
inreplace "doc/example.conf", 'username: "unbound"', 'username: "@@HOMEBREW-UNBOUND-USER@@"'
|
|
system "make"
|
|
system "make", "test"
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
conf = etc/"unbound/unbound.conf"
|
|
return unless conf.exist?
|
|
return unless conf.read.include?('username: "@@HOMEBREW-UNBOUND-USER@@"')
|
|
inreplace conf, 'username: "@@HOMEBREW-UNBOUND-USER@@"',
|
|
"username: \"#{ENV["USER"]}\""
|
|
end
|
|
|
|
plist_options :startup => true
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-/Apple/DTD PLIST 1.0/EN" "http:/www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_sbin}/unbound</string>
|
|
<string>-d</string>
|
|
<string>-c</string>
|
|
<string>#{etc}/unbound/unbound.conf</string>
|
|
</array>
|
|
<key>UserName</key>
|
|
<string>root</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>/dev/null</string>
|
|
<key>StandardOutPath</key>
|
|
<string>/dev/null</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system sbin/"unbound-control-setup", "-d", testpath
|
|
end
|
|
end
|