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.4.tar.gz"
|
|
sha256 "df0a88816ec31ccb8284c9eb132e1166fbf6d9cde71fbc4b8cd08a91ee777fed"
|
|
|
|
bottle do
|
|
sha256 "53d185a4939f5a2186478289cf41e294d77c2a1ee1ba1e3e1edb2706214ea324" => :sierra
|
|
sha256 "8b63f65a77a8c7d7de1a27c86983dac0ecf6851d78ff47218ae02a5ab2ab5973" => :el_capitan
|
|
sha256 "6c28b979421307de00000d28987914f2bbcdd76be5be65fe9705c2971c42ae43" => :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
|