2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Chicken < Formula
|
2010-09-05 19:09:19 +00:00
|
|
|
homepage 'http://www.call-cc.org/'
|
2013-01-18 03:47:20 +00:00
|
|
|
url 'http://code.call-cc.org/releases/4.8.0/chicken-4.8.0.1.tar.gz'
|
|
|
|
sha1 '3db001f2533af9b50399384f50a02ed67f74c4d7'
|
|
|
|
|
2011-02-28 20:53:55 +00:00
|
|
|
head 'git://code.call-cc.org/chicken-core'
|
2009-09-07 12:09:38 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
2013-01-18 03:47:20 +00:00
|
|
|
# Chicken uses a non-standard var. for this
|
|
|
|
args = ["PREFIX=#{prefix}", "PLATFORM=macosx", "C_COMPILER=#{ENV.cc}"]
|
2011-03-18 17:30:47 +00:00
|
|
|
args << "ARCH=x86-64" if MacOS.prefer_64_bit?
|
2010-09-05 19:09:19 +00:00
|
|
|
system "make", *args
|
|
|
|
system "make", "install", *args
|
2009-09-07 12:09:38 +00:00
|
|
|
end
|
|
|
|
end
|