dnscrypt-proxy 1.1.0, -HEAD and plugins

Closes Homebrew/homebrew#15088.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Frank Denis 2012-09-24 23:09:27 +02:00 committed by Adam Vandenberg
parent 3442613104
commit c44963c241
1 changed files with 20 additions and 5 deletions

View File

@ -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