homebrew-core/Formula/unbound.rb
Stefan 5156ab364b unbound 1.4.21
Closes Homebrew/homebrew#22714.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-09-20 22:22:37 +01:00

16 lines
421 B
Ruby

require 'formula'
class Unbound < Formula
homepage 'http://www.unbound.net'
url 'http://www.unbound.net/downloads/unbound-1.4.21.tar.gz'
sha1 '3ef4ea626e5284368d48ab618fe2207d43f2cee1'
depends_on 'ldns'
def install
# gost requires OpenSSL >= 1.0.0, and support built into ldns
system "./configure", "--prefix=#{prefix}",
"--disable-gost"
system "make install"
end
end