blob: 3376f3fe5f52f1cfe97a47be4df24804d7a9f8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Unbound < Formula
url 'http://www.unbound.net/downloads/unbound-1.4.13.tar.gz'
homepage 'http://www.unbound.net'
md5 '7e3b27dee2b97640dd2e1783253317ab'
depends_on 'ldns'
def install
system "./configure", "--disable-gost", "--disable-sha2", "--with-ssl-optional",
"--prefix=#{prefix}"
system "make install"
end
end
|