Skip to content

Instantly share code, notes, and snippets.

@mtigas
Created April 18, 2011 18:15
Show Gist options
  • Save mtigas/925849 to your computer and use it in GitHub Desktop.
Save mtigas/925849 to your computer and use it in GitHub Desktop.
pypy homebrew recipe, using nightly on OSX 64bit
require 'formula'
require 'hardware'
class Pypy < Formula
if MacOS.prefer_64_bit?
url 'http://buildbot.pypy.org/nightly/trunk/pypy-c-jit-42951-88b090e851cc-osx64.tar.bz2'
md5 'f2fc482e8de56171f05ad83d92846acf'
version '1.5.0a'
else
url 'http://pypy.org/download/pypy-1.4.1-osx.tar.bz2'
md5 '8584c4e8c042f5b661fcfffa0d9b8a25'
version '1.4.1'
end
homepage 'http://pypy.org/'
def install
prefix.install ["bin", "lib-python", "lib_pypy", "include"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment