aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Kühl2010-09-05 21:09:19 +0200
committerAdam Vandenberg2010-09-08 05:19:52 -0700
commit128a0139f133e2397a813279eaf97d1317dee2b9 (patch)
tree023267f54c2b3d80a6606d55c46b2718fe8441c3 /Library/Formula
parent1499aed59d8d869583397283ad10acd42f48c508 (diff)
downloadhomebrew-128a0139f133e2397a813279eaf97d1317dee2b9.tar.bz2
Update chicken scheme to 4.5.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/chicken.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/chicken.rb b/Library/Formula/chicken.rb
index c6d41882b..2622daa86 100644
--- a/Library/Formula/chicken.rb
+++ b/Library/Formula/chicken.rb
@@ -1,15 +1,15 @@
require 'formula'
class Chicken <Formula
- url 'http://www.call-with-current-continuation.org/chicken-4.4.0.tar.gz'
- homepage 'http://www.call-with-current-continuation.org/'
- md5 '598e7ea036807a67297c3e2bf4a454c4'
+ url 'http://code.call-cc.org/releases/4.5.0/chicken-4.5.0.tar.gz'
+ md5 '753aea676a18c8dc0161dfb4d1717e20'
+ homepage 'http://www.call-cc.org/'
def install
ENV.deparallelize
- settings = "PREFIX=#{prefix} PLATFORM=macosx"
- settings << " ARCH=x86-64" if snow_leopard_64?
- system "make #{settings}"
- system "make install #{settings}"
+ args = ["PREFIX=#{prefix}", "PLATFORM=macosx"]
+ args << "ARCH=x86-64" if snow_leopard_64?
+ system "make", *args
+ system "make", "install", *args
end
end