2010-11-10 03:29:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Unbound < Formula
|
2011-12-21 13:08:47 +00:00
|
|
|
url 'http://www.unbound.net/downloads/unbound-1.4.14.tar.gz'
|
2010-11-10 03:29:50 +00:00
|
|
|
homepage 'http://www.unbound.net'
|
2011-12-21 13:08:47 +00:00
|
|
|
md5 'cd69fdaaa6af01ea0b6fbc59802f74ba'
|
2010-11-10 03:29:50 +00:00
|
|
|
|
|
|
|
depends_on 'ldns'
|
|
|
|
|
|
|
|
def install
|
2011-12-21 13:08:47 +00:00
|
|
|
system "./configure", "--disable-gost", "--prefix=#{prefix}"
|
2010-11-10 03:29:50 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|