-
-
Save gvlx/5441972 to your computer and use it in GitHub Desktop.
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
# Unofficial brew formula for proxychains 4 | |
# Instruction: | |
# $ git clone https://gist.github.com/gvlx/5441972 gist-5441972 | |
# $ brew install --HEAD gist-5441972/proxychains_formula.rb | |
# | |
# The default config file will be located in /usr/local/etc/proxychains.conf | |
# | |
require 'formula' | |
class ProxychainsFormula < Formula | |
head 'https://github.com/rofl0r/proxychains.git' | |
homepage 'https://github.com/rofl0r/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