aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/proxychains-ng.rb
diff options
context:
space:
mode:
authorrofl0r2013-06-08 07:54:19 +0200
committerSamuel John2013-06-11 16:25:10 +0200
commit340513411b09e8e9262ff349371f0b15dcfbd87e (patch)
tree8a336fd294e0bd6f8f94a673cae79d04d0d76415 /Library/Formula/proxychains-ng.rb
parent9a7bcd00c0bfe2f42382c29a696ba01c7392908b (diff)
downloadhomebrew-340513411b09e8e9262ff349371f0b15dcfbd87e.tar.bz2
proxychains-ng: 4.5 and --HEAD
New formula. Signed-off-by: Samuel John <github@SamuelJohn.de>
Diffstat (limited to 'Library/Formula/proxychains-ng.rb')
-rw-r--r--Library/Formula/proxychains-ng.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/proxychains-ng.rb b/Library/Formula/proxychains-ng.rb
new file mode 100644
index 000000000..e9cf3c39b
--- /dev/null
+++ b/Library/Formula/proxychains-ng.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class ProxychainsNg < Formula
+ homepage 'https://sourceforge.net/projects/proxychains-ng'
+ url 'http://surfnet.dl.sourceforge.net/project/proxychains-ng/proxychains-4.5.tar.bz2'
+ sha1 'b7d85c6dfae83ec50a92c232f674231192f1ca33'
+
+ head 'https://github.com/rofl0r/proxychains-ng.git'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{prefix}/etc"
+ system "make"
+ system "make install"
+ system "make install-config"
+ end
+end