2010-05-17 23:20:10 +00:00
|
|
|
require 'formula'
|
2010-05-19 11:46:58 +00:00
|
|
|
require 'hardware'
|
2010-05-17 23:20:10 +00:00
|
|
|
|
|
|
|
class Sbcl <Formula
|
2010-08-08 04:04:37 +00:00
|
|
|
if snow_leopard_64?
|
2010-05-19 11:46:58 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.29/sbcl-1.0.29-x86_64-darwin-binary-r2.tar.bz2'
|
|
|
|
md5 '47c99c60ec44e57070807c0890ba1c90'
|
|
|
|
else
|
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.29/sbcl-1.0.29-x86-darwin-binary-r2.tar.bz2'
|
|
|
|
md5 '6e6b027a5fd05ef0c8faee30d89ffe54'
|
|
|
|
end
|
2010-05-17 23:20:10 +00:00
|
|
|
version '1.0.29'
|
|
|
|
homepage 'http://www.sbcl.org/'
|
|
|
|
|
|
|
|
skip_clean 'bin'
|
2010-05-19 11:46:58 +00:00
|
|
|
skip_clean 'lib'
|
2010-05-17 23:20:10 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['INSTALL_ROOT'] = prefix
|
|
|
|
system "sh install.sh"
|
|
|
|
end
|
|
|
|
end
|