aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unbound.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/unbound.rb b/Library/Formula/unbound.rb
index f54c0037d..de0e3f5eb 100644
--- a/Library/Formula/unbound.rb
+++ b/Library/Formula/unbound.rb
@@ -2,13 +2,15 @@ require 'formula'
class Unbound < Formula
homepage 'http://www.unbound.net'
- url 'http://www.unbound.net/downloads/unbound-1.4.16.tar.gz'
- sha256 'fb71665851eb11d3b1ad5dd5f9d7b167e0902628c06db3d6fc14afd95cc970fa'
+ url 'http://www.unbound.net/downloads/unbound-1.4.17.tar.gz'
+ sha256 '2637d6bda4065d7abf1cd11ee25bfc8e916241153c2d331de99ab6c63df5e3d3'
depends_on 'ldns'
def install
- system "./configure", "--disable-gost", "--prefix=#{prefix}"
+ # gost requires OpenSSL >= 1.0.0, and support built into ldns
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-gost"
system "make install"
end
end