nsd 3.2.13

Closes Homebrew/homebrew#13894.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Rich Healey 2012-08-02 11:24:58 -07:00 committed by Adam Vandenberg
parent b083de78f9
commit 388fe61c4f

13
Formula/nsd.rb Normal file
View file

@ -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