aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/pdnsd.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/pdnsd.rb b/Library/Formula/pdnsd.rb
new file mode 100644
index 000000000..170ddad21
--- /dev/null
+++ b/Library/Formula/pdnsd.rb
@@ -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