homebrew-core/Formula/knot-resolver.rb

84 lines
2.6 KiB
Ruby

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.2.6.tar.xz"
sha256 "31e1b8899c5592433e5265a8e9685126fc5aeff3bd6b10884154b2e34b786f3c"
revision 1
head "https://gitlab.labs.nic.cz/knot/resolver.git"
bottle do
sha256 "31914a0056c76b7f627d939035fa0b61989bd7354f46a561f8651a5f77b185f6" => :sierra
sha256 "032c873125c4be677f6b9c6b7dee26013753d48247c3cd2496bf9d343d233b52" => :el_capitan
sha256 "34f0bad310d9017f5cacc63ea1e5319d82d30621d57f69c51e9afa92dfaaba0e" => :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
<?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>WorkingDirectory</key>
<string>#{var}/kresd</string>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{sbin}/kresd</string>
<string>-c</string>
<string>#{etc}/kresd/config</string>
</array>
<key>StandardInPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>StandardErrorPath</key>
<string>#{var}/log/kresd.log</string>
</dict>
</plist>
EOS
end
test do
system sbin/"kresd", "--version"
end
end