2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
class Chicken <Formula
|
2010-03-12 16:40:33 +00:00
|
|
|
url 'http://www.call-with-current-continuation.org/chicken-4.4.0.tar.gz'
|
2009-11-26 06:46:59 +00:00
|
|
|
homepage 'http://www.call-with-current-continuation.org/'
|
2010-03-12 16:40:33 +00:00
|
|
|
md5 '598e7ea036807a67297c3e2bf4a454c4'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
2009-12-19 19:52:22 +00:00
|
|
|
settings = "PREFIX=#{prefix} PLATFORM=macosx"
|
2010-08-08 04:04:37 +00:00
|
|
|
settings << " ARCH=x86-64" if snow_leopard_64?
|
2009-09-07 12:09:38 +00:00
|
|
|
system "make #{settings}"
|
|
|
|
system "make install #{settings}"
|
|
|
|
end
|
|
|
|
end
|