class KnotResolver < Formula desc "Minimalistic, caching, DNSSEC-validating DNS resolver" homepage "https://www.knot-resolver.cz" url "https://secure.nic.cz/files/knot-resolver/knot-resolver-1.3.0.tar.xz" sha256 "667002dc3ee0b0f755628997ef4f71be769a06fb8b9ccd935db329c8709c2af4" head "https://gitlab.labs.nic.cz/knot/resolver.git" bottle do sha256 "017d58ce755ab19283cbeba188e1975b7c06b0462beeb22387e4d0011b56de0f" => :sierra sha256 "712e93168f70a45e95ce47c6a4562eaa250b7b6afab34c131e861a833a1c2d3c" => :el_capitan sha256 "894e91c43a7f55141fe41e4f689f0cd615cdf04942bdd6aa73bcb1d58ca23717" => :yosemite end option "without-nettle", "Compile without DNS cookies support" option "with-hiredis", "Compile with Redis cache storage support" option "with-libmemcached", "Compile with memcached cache storage support" depends_on "cmocka" => :build depends_on "pkg-config" => :build depends_on "gnutls" depends_on "knot" depends_on "luajit" depends_on "libuv" depends_on "lmdb" depends_on "nettle" => :recommended depends_on "hiredis" => :optional depends_on "libmemcached" => :optional def install %w[all check lib-install daemon-install modules-install].each do |target| system "make", target, "PREFIX=#{prefix}" end cp "etc/config.personal", "config" inreplace "config", /^\s*user\(/, "-- user(" (etc/"kresd").install "config" (buildpath/"root.keys").write(root_keys) (var/"kresd").install "root.keys" end # DNSSEC root anchor published by IANA (https://www.iana.org/dnssec/files) def root_keys; <<-EOS.undent . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5 . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d EOS end plist_options :startup => true def plist; <<-EOS.undent Label #{plist_name} WorkingDirectory #{var}/kresd RunAtLoad ProgramArguments #{sbin}/kresd -c #{etc}/kresd/config StandardInPath /dev/null StandardOutPath /dev/null StandardErrorPath #{var}/log/kresd.log EOS end test do system sbin/"kresd", "--version" end end