76 lines
2.6 KiB
Ruby
76 lines
2.6 KiB
Ruby
class Pdnsd < Formula
|
|
desc "Proxy DNS server with permanent caching"
|
|
homepage "http://members.home.nl/p.a.rombouts/pdnsd/"
|
|
url "http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-1.2.9a-par.tar.gz"
|
|
version "1.2.9a-par"
|
|
sha256 "bb5835d0caa8c4b31679d6fd6a1a090b71bdf70950db3b1d0cea9cf9cb7e2a7b"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "a1dd9461855d3856adf5e16b17dca7703d41f14c8cd91b1e4c664a7366373213" => :sierra
|
|
sha256 "2bfe96e4ac7eddad0250bc74907d3c11b94e1f3b62f7aaa7e9f4efc0e4d945a7" => :el_capitan
|
|
sha256 "38ee1685f816a7b6d4355450b9d7936f5bb413f9ab9ad43c6f802b678578a869" => :yosemite
|
|
sha256 "f5403ea586fe8b10534fc367e63601f5a8f7e37b464eb43b9a27ffb2bc8ca8b0" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--localstatedir=#{var}",
|
|
"--sysconfdir=#{etc}",
|
|
"--mandir=#{man}",
|
|
"--with-cachedir=#{var}/cache/pdnsd"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
This install of "pdnsd" expects config files to be in #{etc}
|
|
All state files (status and cache) are stored in #{var}/cache/pdnsd.
|
|
|
|
pdnsd needs to run as root since it listens on privileged ports.
|
|
|
|
Sample config file can be found at #{etc}/pdnsd.conf.sample.
|
|
|
|
Note that you must create the config file before starting the service,
|
|
and change ownership to "root" or pdnsd will refuse to run:
|
|
sudo chown root #{etc}/pdnsd.conf
|
|
|
|
For other related utilities, e.g. pdnsd-ctl, to run, change the ownership
|
|
to the user (default: nobody) running the service:
|
|
sudo chown -R nobody #{var}/log/pdnsd.log #{var}/cache/pdnsd
|
|
EOS
|
|
end
|
|
|
|
plist_options :startup => true, :manual => "sudo pdnsd"
|
|
|
|
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>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Program</key>
|
|
<string>#{opt_sbin}/pdnsd</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/pdnsd.log</string>
|
|
<key>StandardOutputPath</key>
|
|
<string>#{var}/log/pdnsd.log</string>
|
|
<key>Disabled</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "version #{version}",
|
|
shell_output("#{sbin}/pdnsd --version", 1)
|
|
end
|
|
end
|