Skip to content

Instantly share code, notes, and snippets.

@st63jun
Created September 30, 2011 09:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save st63jun/1253316 to your computer and use it in GitHub Desktop.
Save st63jun/1253316 to your computer and use it in GitHub Desktop.
Homebrew formula: pychecker
require 'formula'
class Pychecker < Formula
url 'http://downloads.sourceforge.net/project/pychecker/pychecker/0.8.19/pychecker-0.8.19.tar.gz'
homepage 'http://pychecker.sourceforge.net/'
md5 'c37182863dfb09209d6ba4f38fce9d2b'
def install
system "python", "setup.py", "install",
"--prefix=#{prefix}",
"--install-purelib=#{libexec}",
"--install-platlib=#{libexec}",
"--install-scripts=#{bin}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment