Created
January 28, 2012 22:47
-
-
Save haad/1696065 to your computer and use it in GitHub Desktop.
proxychains4 homebrew formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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