homebrew-core/Formula/pdnsd.rb
Ville Korhonen 9e2c4e1353 Added formula for pdnsd, caching DNS server
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-22 21:26:04 -07:00

17 lines
578 B
Ruby

require 'formula'
class Pdnsd <Formula
url 'http://www.phys.uu.nl/~rombouts/pdnsd/releases/pdnsd-1.2.8-par.tar.gz'
version '1.2.8-par'
homepage 'http://www.phys.uu.nl/~rombouts/pdnsd.html'
md5 '779c5d19576e561fbf2455de435e5597'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--localstatedir=#{var}",
"--sysconfdir=#{etc}",
"--with-cachedir=#{var}/cache/pdnsd"
system "make install"
end
end