blob: ab3e3e70650d6792334ae16a462d67abb44ff802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Torsocks < Formula
url 'http://torsocks.googlecode.com/files/torsocks-1.1.tar.gz'
homepage 'http://code.google.com/p/torsocks/'
md5 '1704fd009ed1a1c1dc9c6b72305a5449'
depends_on 'tor'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|