homebrew-core/Formula/chicken.rb
Clinton R. Nixon 51ca673030 CHICKENscheme formula
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.
2009-09-16 14:49:07 +01:00

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