Skip to content

Instantly share code, notes, and snippets.

@nmcv
Forked from allenhuang/proxychains4_formula.rb
Created February 9, 2013 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmcv/4746442 to your computer and use it in GitHub Desktop.
Save nmcv/4746442 to your computer and use it in GitHub Desktop.
# Unofficial brew formula for proxychains 4
# Instruction:
# $ git clone git://gist.github.com/3792521.git gist-3792521
# $ brew install --HEAD gist-3792521/proxychains4_formula.rb
#
# The default config file will be located in /usr/local/etc/proxychains.conf
#
require 'formula'
class Proxychains < Formula
head 'https://github.com/haad/proxychains.git'
homepage 'https://github.com/haad/proxychains'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
system "make install-config"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment