51ca673030
CHICKEN is a compiler for the Scheme programming language. CHICKEN produces portable, efficient C, supports almost all of the R5RS Scheme language standard, and includes many enhancements and extensions. CHICKEN runs on Linux, MacOS X, Windows, and many Unix flavours.
14 lines
398 B
Ruby
14 lines
398 B
Ruby
require 'brewkit'
|
|
|
|
class Chicken <Formula
|
|
@url='http://www.call-with-current-continuation.org/chicken-4.1.0.tar.gz'
|
|
@homepage='http://www.call-with-current-continuation.org/'
|
|
@md5='9a43b536408c271b0eaf802307e8c415'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
settings = "PREFIX=#{prefix} PLATFORM=macosx ARCH=x86-64"
|
|
system "make #{settings}"
|
|
system "make install #{settings}"
|
|
end
|
|
end
|