Added formula for pdnsd, caching DNS server

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ville Korhonen 2010-05-22 21:25:45 +03:00 committed by Adam Vandenberg
parent 5181069f11
commit 9e2c4e1353
1 changed files with 17 additions and 0 deletions

17
Formula/pdnsd.rb Normal file
View File

@ -0,0 +1,17 @@
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