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.8.1.tar.xz" sha256 "b21bf03e5cb6804df4e0e8b3898446349e86ddae5bf110edaf240d0ad1e2a2c6" bottle do sha256 "bb8eb25cd8f1519450e9818a9dc219930db35496b093e889f6a757b398290545" => :mojave sha256 "11f116128b5868110d2cb787d4c50b916694c3f2c014c62852dc9019e28410e6" => :high_sierra sha256 "983ff10d8a6caf5fde20c21df00fbbf20b27d5b51548f3a7c24693cef0dcea07" => :sierra end head do url "https://gitlab.labs.nic.cz/knot/knot-dns.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end depends_on "pkg-config" => :build depends_on "sphinx-doc" => :build depends_on "fstrm" depends_on "gnutls" depends_on "libidn2" depends_on :macos => :yosemite # due to AT_REMOVEDIR depends_on "protobuf-c" depends_on "userspace-rcu" def install system "autoreconf", "-fvi" if build.head? system "./configure", "--disable-dependency-tracking", "--disable-silent-rules", "--with-configdir=#{etc}", "--with-storage=#{var}/knot", "--with-rundir=#{var}/run/knot", "--prefix=#{prefix}", "--with-module-dnstap", "--enable-dnstap" inreplace "samples/Makefile", "install-data-local:", "disable-install-data-local:" system "make" system "make", "check" system "make", "install" system "make", "install-singlehtml" (buildpath/"knot.conf").write(knot_conf) etc.install "knot.conf" end def post_install (var/"knot").mkpath end def knot_conf; <<~EOS server: rundir: "#{var}/knot" listen: [ "0.0.0.0@53", "::@53" ] log: - target: "stderr" any: "info" control: listen: "knot.sock" template: - id: "default" storage: "#{var}/knot" EOS end plist_options :startup => true def plist; <<~EOS EnableTransactions Label #{plist_name} RunAtLoad ProgramArguments #{opt_sbin}/knotd StandardInPath /dev/null StandardOutPath /dev/null StandardErrorPath #{var}/log/knot.log EOS end test do system bin/"kdig", "www.knot-dns.cz" system bin/"khost", "brew.sh" system sbin/"knotc", "conf-check" end end