diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/proxychains-ng.rb | 16 |
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 |
