-
-
Save isao/3152563 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
require 'formula' | |
class Proxychains < Formula | |
homepage 'https://github.com/haad/proxychains' | |
url 'https://github.com/haad/proxychains/tarball/proxychains-4.0.1' | |
sha1 '48911bf630dd293414f94e78d7dc7b0a1386b241' | |
def install | |
system './configure', '--prefix #{prefix}' | |
system 'make' | |
system 'make install' | |
bin.install 'proxychains4' => 'proxychains' | |
end | |
def test | |
system 'test -x {prefix}/bin/proxychains' | |
system 'tail -3 {prefix}/etc/proxychains.conf' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
had this working at some point.. :/ n.b. see haad/proxychains#11