2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
class Chicken <Formula
|
2010-09-13 08:58:59 +00:00
|
|
|
url 'http://code.call-cc.org/releases/4.6.0/chicken-4.6.0.tar.gz'
|
|
|
|
md5 '538a93e786e550ad848a040bcd902184'
|
2010-09-05 19:09:19 +00:00
|
|
|
homepage 'http://www.call-cc.org/'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
2010-09-05 19:09:19 +00:00
|
|
|
args = ["PREFIX=#{prefix}", "PLATFORM=macosx"]
|
|
|
|
args << "ARCH=x86-64" if snow_leopard_64?
|
|
|
|
system "make", *args
|
|
|
|
system "make", "install", *args
|
2009-09-07 12:09:38 +00:00
|
|
|
end
|
|
|
|
end
|