New formula: dnscrypt-proxy

Closes Homebrew/homebrew#9035.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Frank Denis 2011-12-14 10:48:01 -08:00 committed by Jack Nagel
parent d87dda1dd1
commit 5182097ca1

13
Formula/dnscrypt-proxy.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class DnscryptProxy < Formula
url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-0.8.tar.gz'
head 'https://github.com/opendns/dnscrypt-proxy.git', :branch => 'master'
homepage 'http://www.opendns.com/technology/dnscrypt'
md5 '9c573da27aa897f27a564214c92bcddb'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end