Skip to content

Instantly share code, notes, and snippets.

@hmaurer
Forked from allenhuang/proxychains4_formula.rb
Created June 1, 2018 21:30
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 hmaurer/7461d4915fcb9d28a6162cb1526a09d1 to your computer and use it in GitHub Desktop.
Save hmaurer/7461d4915fcb9d28a6162cb1526a09d1 to your computer and use it in GitHub Desktop.
Unofficial brew formula for proxychains 4
# 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