2010-05-20 02:04:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pypy <Formula
|
2010-06-26 00:56:07 +00:00
|
|
|
url 'http://pypy.org/download/pypy-1.3-osx.tar.bz2'
|
2010-05-20 02:04:00 +00:00
|
|
|
homepage 'http://pypy.org/'
|
2010-06-26 00:56:07 +00:00
|
|
|
md5 'eb34325767bef243dc642252ffb1005a'
|
|
|
|
version '1.3'
|
2010-05-20 02:04:00 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install 'bin'
|
|
|
|
# See: http://pypy.org/download.html#installing
|
|
|
|
(share+"pypy-#{version}").install ["lib-python", "pypy"]
|
|
|
|
end
|
|
|
|
end
|