homebrew-core/Formula/dnscrypt-proxy.rb
Jack Nagel 24426c93ba dnscrypt-proxy: remove broken HEAD
The GitHub checkout needs an autotools bootstrap. Patches welcome to
enable it, but removing it until then.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-24 20:43:45 -05:00

12 lines
365 B
Ruby

require 'formula'
class DnscryptProxy < Formula
homepage 'http://www.opendns.com/technology/dnscrypt'
url 'https://github.com/downloads/opendns/dnscrypt-proxy/dnscrypt-proxy-0.9.4.tar.gz'
md5 'c997fd1322ac5aef8325a718da7d73e2'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end