homebrew-core/Formula/unbound.rb
Lenz Gschwendtner 2d65345efb added unbound fomula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-22 21:53:58 -08:00

15 lines
385 B
Ruby

require 'formula'
class Unbound <Formula
url 'http://www.unbound.net/downloads/unbound-1.4.7.tar.gz'
homepage 'http://www.unbound.net'
md5 '97ee3c4a9877ff725fad23e31ecadfe0'
depends_on 'ldns'
def install
system "./configure", "--disable-gost", "--disable-sha2", "--with-ssl-optional",
"--prefix=#{prefix}"
system "make install"
end
end