Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Torsocks allows you to use most socks-friendly applications in a safe way with Tor. It ensures that DNS requests are handled safely and explicitly rejects UDP traffic from the application you're using. This adds a formula for version 1.1 - for more info, see http://code.google.com/p/torsocks/

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
kewagi authored and adamv committed Nov 20, 2011
1 parent df3d94e commit 628a073
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Library/Formula/torsocks.rb
@@ -0,0 +1,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

0 comments on commit 628a073

Please sign in to comment.