require 'formula' class Dnsmasq < Formula homepage 'http://www.thekelleys.org.uk/dnsmasq/doc.html' url 'http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.65.tar.gz' sha256 'f5ddf3111b4ec372d0e07bcc036bbe3a4c5a1a68b60c2a1018102a0099bc0740' option 'with-idn', 'Compile with IDN support' depends_on "libidn" if build.include? 'with-idn' def install ENV.deparallelize # Fix etc location inreplace "src/config.h", "/etc/dnsmasq.conf", "#{etc}/dnsmasq.conf" # Optional IDN support if build.include? 'with-idn' inreplace "src/config.h", "/* #define HAVE_IDN */", "#define HAVE_IDN" 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 Label #{plist_name} ProgramArguments #{opt_prefix}/sbin/dnsmasq --keep-in-foreground KeepAlive NetworkState EOS end end