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
|
|
|
homepage 'http://www.unbound.net'
|
2013-09-20 18:51:14 +00:00
|
|
|
url 'http://www.unbound.net/downloads/unbound-1.4.21.tar.gz'
|
|
|
|
sha1 '3ef4ea626e5284368d48ab618fe2207d43f2cee1'
|
2010-11-10 03:29:50 +00:00
|
|
|
|
|
|
|
depends_on 'ldns'
|
|
|
|
|
|
|
|
def install
|
2012-06-19 03:16:52 +00:00
|
|
|
# gost requires OpenSSL >= 1.0.0, and support built into ldns
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-gost"
|
2010-11-10 03:29:50 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|