Skip to content

Instantly share code, notes, and snippets.

@steinnes
Created September 25, 2014 02:17
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 steinnes/0c30f8b84c08f2f02199 to your computer and use it in GitHub Desktop.
Save steinnes/0c30f8b84c08f2f02199 to your computer and use it in GitHub Desktop.
Homebrew formula for simpleproxy
require "formula"
class Simpleproxy < Formula
homepage ""
url "http://downloads.sourceforge.net/project/simpleproxy/simpleproxy/3.4/simpleproxy-3.4.tar.gz"
sha1 "ec98a2e622507f5b6ecdbbe0b50d2fc82480bcc2"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment