dnscrypt-proxy 1.1.0, -HEAD and plugins
Closes Homebrew/homebrew#15088. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
3442613104
commit
c44963c241
1 changed files with 20 additions and 5 deletions
|
@ -1,14 +1,29 @@
|
||||||
require 'formula'
|
require 'formula'
|
||||||
|
|
||||||
class DnscryptProxy < Formula
|
class DnscryptProxy < Formula
|
||||||
homepage 'http://www.opendns.com/technology/dnscrypt'
|
homepage 'http://dnscrypt.org'
|
||||||
url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-1.0.1.tar.gz'
|
url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-1.1.0.tar.gz'
|
||||||
sha256 '9852a8dcae200c9965697b29fdaffb8ee1dc8602420afdb8763811a7996d6a7f'
|
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
|
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"
|
system "make install"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue