aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRich Healey2012-08-02 11:24:58 -0700
committerAdam Vandenberg2012-09-06 13:30:34 -0700
commit5a900e8ef84aa50248e7c52e439c61d07db43af9 (patch)
tree8a239983e3e95b075ef0e3ef3fe0229b74c85cfc /Library/Formula
parent3544707937ac3580d94803458d049f1c3d84b0e6 (diff)
downloadhomebrew-5a900e8ef84aa50248e7c52e439c61d07db43af9.tar.bz2
nsd 3.2.13
Closes #13894. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/nsd.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/nsd.rb b/Library/Formula/nsd.rb
new file mode 100644
index 000000000..147696876
--- /dev/null
+++ b/Library/Formula/nsd.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Nsd < Formula
+ homepage 'http://www.nlnetlabs.nl/projects/nsd/'
+ url 'http://www.nlnetlabs.nl/downloads/nsd/nsd-3.2.13.tar.gz'
+ sha1 '2cb44f75e9686fd73c7ee9765857a36a8fe5bca9'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end