homebrew-core/Formula/knot.rb
2016-03-10 13:35:09 +08:00

102 lines
2.7 KiB
Ruby

class Knot < Formula
desc "High-performance authoritative-only DNS server"
homepage "https://www.knot-dns.cz/"
url "https://secure.nic.cz/files/knot-dns/knot-2.1.1.tar.xz"
sha256 "e110d11d4a4c4b5abb091b32fcb073934fb840046e975234323e0fc15f2f8f5b"
head "https://gitlab.labs.nic.cz/labs/knot.git"
bottle do
cellar :any
sha256 "89f74b85b5a6f42a5051d279d087bf446b42c99ddd89bfd14154d431b3cc94bb" => :el_capitan
sha256 "f8377f2c37094fc446f167f954bfc0c3202e4d845317b0e7a140f455b9959f7a" => :yosemite
sha256 "8295bd95060e9f067613d3c9742d231b841694afdff96eae13f448e00f1a3d13" => :mavericks
end
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "gnutls"
depends_on "jansson"
depends_on "libidn"
depends_on "nettle"
depends_on "openssl"
depends_on "userspace-rcu"
def install
system "autoreconf", "-i", "-f" if build.head?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--with-configdir=#{etc}",
"--with-storage=#{var}/knot",
"--with-rundir=#{var}/knot",
"--prefix=#{prefix}"
inreplace "samples/Makefile", "install-data-local:", "disable-install-data-local:"
system "make"
system "make", "install"
(buildpath/"knot.conf").write(knot_conf)
etc.install "knot.conf"
(var/"knot").mkpath
end
def knot_conf; <<-EOS.undent
server:
rundir: "#{var}/knot"
listen: [ "0.0.0.0@53", "::@53" ]
log:
- target: "stderr"
any: "error"
- target: "syslog"
server: "info"
zone: "warning"
any: "error"
control:
listen: "knot.sock"
template:
- id: "default"
storage: "#{var}/knot"
EOS
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>EnableTransactions</key>
<true/>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{opt_sbin}/knotd</string>
<string>-c</string>
<string>#{etc}/knot.conf</string>
</array>
<key>ServiceIPC</key>
<false/>
</dict>
</plist>
EOS
end
test do
system "#{bin}/kdig", "www.knot-dns.cz"
system "#{bin}/khost", "brew.sh"
system "#{sbin}/knotc", "-c", "#{etc}/knot.conf", "checkconf"
end
end