Skip to content

Instantly share code, notes, and snippets.

@haad
Created January 28, 2012 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save haad/1696065 to your computer and use it in GitHub Desktop.
Save haad/1696065 to your computer and use it in GitHub Desktop.
proxychains4 homebrew formula
diff --git a/Library/Formula/proxychains.rb b/Library/Formula/proxychains.rb
new file mode 100644
index 0000000..589bafa
--- /dev/null
+++ b/Library/Formula/proxychains.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Proxychains < Formula
+ url 'https://github.com/haad/proxychains/zipball/proxychains-4.0.1'
+ homepage 'https://github.com/haad/proxychains'
+ md5 '7c825ab05b30e1381d2a6db36a6605d4'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+
+ def test
+ system "proxychains4"
+ end
+end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment