2010-11-10 03:29:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Unbound < Formula
|
2010-11-10 03:29:50 +00:00
|
|
|
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
|