2010-11-10 03:29:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Unbound < Formula
|
2011-10-17 06:27:38 +00:00
|
|
|
url 'http://www.unbound.net/downloads/unbound-1.4.13.tar.gz'
|
2010-11-10 03:29:50 +00:00
|
|
|
homepage 'http://www.unbound.net'
|
2011-10-17 06:27:38 +00:00
|
|
|
md5 '7e3b27dee2b97640dd2e1783253317ab'
|
2010-11-10 03:29:50 +00:00
|
|
|
|
|
|
|
depends_on 'ldns'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-gost", "--disable-sha2", "--with-ssl-optional",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|