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-2.2.0.tar.xz" sha256 "7bb7f0cd8bbb1d99706d56ed119bdffce094628479438896f3740644efe614fa" head "https://gitlab.labs.nic.cz/knot/knot-resolver.git" bottle do sha256 "40337be8133f97ee475b948cbd212303b80272028376306394c6acf51c184628" => :high_sierra sha256 "fdd84fa8b9f8577caaa550ffaf99520830ee6d87d09000e079d4928ea777648f" => :sierra sha256 "7d60cb3dd48dd2a75a72c35351e5aef91e1b40f04ccfc842b6fc643f8c16fae9" => :el_capitan 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 # Since we don't run `make install` or `make etc-install`, we need to # install root.hints manually before running `make check`. cp "etc/root.hints", buildpath (etc/"kresd").install "root.hints" %w[all lib-install daemon-install client-install modules-install check].each do |target| system "make", target, "PREFIX=#{prefix}", "ETCDIR=#{etc}/kresd" end cp "etc/config.personal", "config" inreplace "config", /^\s*user\(/, "-- user(" (etc/"kresd").install "config" (etc/"kresd").install "etc/root.hints" (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 . IN DS 19036 8 2 49aac11d7b6f6446702e54a1607371607a1a41855200fd2ce1cdde32f24e8fb5 . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d EOS end plist_options :startup => true def plist; <<~EOS 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