aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/chicken.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/chicken.rb b/Library/Formula/chicken.rb
new file mode 100644
index 000000000..fca500ad9
--- /dev/null
+++ b/Library/Formula/chicken.rb
@@ -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