diff options
| author | Adam Vandenberg | 2012-06-18 20:16:52 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-18 20:16:52 -0700 |
| commit | fb1c049c925b6da866ddfe27bdcbdb45ffa79fc7 (patch) | |
| tree | 121696a36979f8291f4a607bdc015cd28a60df44 | |
| parent | 1be7c11fac57bbd658c5bee6caf396d32017541b (diff) | |
| download | homebrew-fb1c049c925b6da866ddfe27bdcbdb45ffa79fc7.tar.bz2 | |
unbound 1.4.17
| -rw-r--r-- | Library/Formula/unbound.rb | 8 |
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 |
