diff options
Diffstat (limited to 'Library/Formula/dnscrypt-proxy.rb')
| -rw-r--r-- | Library/Formula/dnscrypt-proxy.rb | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/Library/Formula/dnscrypt-proxy.rb b/Library/Formula/dnscrypt-proxy.rb index 4e7df3a21..d69c98d21 100644 --- a/Library/Formula/dnscrypt-proxy.rb +++ b/Library/Formula/dnscrypt-proxy.rb @@ -1,14 +1,29 @@ require 'formula' class DnscryptProxy < Formula - homepage 'http://www.opendns.com/technology/dnscrypt' - url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-1.0.1.tar.gz' - sha256 '9852a8dcae200c9965697b29fdaffb8ee1dc8602420afdb8763811a7996d6a7f' + homepage 'http://dnscrypt.org' + url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-1.1.0.tar.gz' + sha256 '73c1042f6ba68dedd89ab518c319f5e46b3536a3c49e697ef9ba504601b26c71' - head 'https://github.com/opendns/dnscrypt-proxy.git', :branch => '1.0.x' + head 'https://github.com/opendns/dnscrypt-proxy.git', :branch => 'master' + + option "plugins", "Support plugins and install example plugins." + + if build.head? + depends_on :automake + depends_on :libtool + end def install - system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" + system "autoreconf", "-if" if build.head? + + args = ["--disable-dependency-tracking", "--prefix=#{prefix}"] + if build.include? "plugins" + args << "--enable-plugins" + args << "--enable-relaxed-plugins-permissions" + args << "--enable-plugins-root" + end + system "./configure", *args system "make install" end end |
