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.
This commit is contained in:
parent
9394e6a395
commit
51ca673030
1 changed files with 14 additions and 0 deletions
14
Formula/chicken.rb
Normal file
14
Formula/chicken.rb
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
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
|
Loading…
Reference in a new issue