2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
class Chicken <Formula
|
2009-10-13 04:21:58 +00:00
|
|
|
@url='http://www.call-with-current-continuation.org/chicken-4.2.0.tar.gz'
|
2009-09-07 12:09:38 +00:00
|
|
|
@homepage='http://www.call-with-current-continuation.org/'
|
2009-10-13 04:21:58 +00:00
|
|
|
@md5='4705b7634447a571ff083f435c110fe3'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
settings = "PREFIX=#{prefix} PLATFORM=macosx ARCH=x86-64"
|
|
|
|
system "make #{settings}"
|
|
|
|
system "make install #{settings}"
|
|
|
|
end
|
|
|
|
end
|