Skip to content

Instantly share code, notes, and snippets.

@isao
Forked from haad/gist:1696065
Created July 20, 2012 18:55
Show Gist options
  • Save isao/3152563 to your computer and use it in GitHub Desktop.
Save isao/3152563 to your computer and use it in GitHub Desktop.
proxychains4 homebrew formula
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
@isao
Copy link
Author

isao commented Jul 20, 2012

had this working at some point.. :/ n.b. see haad/proxychains#11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment