84 lines
2.4 KiB
Ruby
84 lines
2.4 KiB
Ruby
class Dnsmasq < Formula
|
|
desc "Lightweight DNS forwarder and DHCP server"
|
|
homepage "http://www.thekelleys.org.uk/dnsmasq/doc.html"
|
|
url "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.73.tar.gz"
|
|
sha256 "9f350f74ae2c7990b1c7c6c8591d274c37b674aa987f54dfee7ca856fae0d02d"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "bd74dbd1bc8501ef5b648402efb3fca086e0bc0eee4bd038e7621f134ba925ea" => :yosemite
|
|
sha256 "0be4c29866964960e9903d447309823da37fcab913299b0cbfcc9dd1bd92db40" => :mavericks
|
|
sha256 "e1dd537c926c06948a33b7c87e9b1eff490a5a3a7856a005aab6d862f04ade15" => :mountain_lion
|
|
end
|
|
|
|
option "with-libidn", "Compile with IDN support"
|
|
option "with-dnssec", "Compile with DNSSEC support"
|
|
|
|
deprecated_option "with-idn" => "with-libidn"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libidn" => :optional
|
|
depends_on "nettle" if build.with? "dnssec"
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
|
|
# Fix etc location
|
|
inreplace "src/config.h", "/etc/dnsmasq.conf", "#{etc}/dnsmasq.conf"
|
|
|
|
# Optional IDN support
|
|
if build.with? "libidn"
|
|
inreplace "src/config.h", "/* #define HAVE_IDN */", "#define HAVE_IDN"
|
|
end
|
|
|
|
# Optional DNSSEC support
|
|
if build.with? "dnssec"
|
|
inreplace "src/config.h", "/* #define HAVE_DNSSEC */", "#define HAVE_DNSSEC"
|
|
end
|
|
|
|
# Fix compilation on Lion
|
|
ENV.append_to_cflags "-D__APPLE_USE_RFC_3542" if MacOS.version >= :lion
|
|
inreplace "Makefile" do |s|
|
|
s.change_make_var! "CFLAGS", ENV.cflags
|
|
end
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
prefix.install "dnsmasq.conf.example"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To configure dnsmasq, copy the example configuration to #{etc}/dnsmasq.conf
|
|
and edit to taste.
|
|
|
|
cp #{opt_prefix}/dnsmasq.conf.example #{etc}/dnsmasq.conf
|
|
EOS
|
|
end
|
|
|
|
plist_options :startup => true
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_sbin}/dnsmasq</string>
|
|
<string>--keep-in-foreground</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{sbin}/dnsmasq", "--test"
|
|
end
|
|
end
|