aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorricho2013-01-18 14:47:20 +1100
committerAdam Vandenberg2013-01-17 20:25:17 -0800
commitd28df46634e01a959f13cef6b35de4831a9c321a (patch)
treead69e5111cbedf41f0a20ee66cac2c0e1c2d0396 /Library
parent89892825b1077fd18a256335ae966df51ed93d97 (diff)
downloadhomebrew-d28df46634e01a959f13cef6b35de4831a9c321a.tar.bz2
chicken 4.8.0.1
Closes #17157. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/chicken.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/chicken.rb b/Library/Formula/chicken.rb
index af33fa7ad..07743b3ac 100644
--- a/Library/Formula/chicken.rb
+++ b/Library/Formula/chicken.rb
@@ -1,14 +1,16 @@
require 'formula'
class Chicken < Formula
- url 'http://code.call-cc.org/releases/4.8.0/chicken-4.8.0.tar.gz'
- sha1 '5068929f02d8a4fcb8fde13e4ddefb0bcb7142a6'
homepage 'http://www.call-cc.org/'
+ url 'http://code.call-cc.org/releases/4.8.0/chicken-4.8.0.1.tar.gz'
+ sha1 '3db001f2533af9b50399384f50a02ed67f74c4d7'
+
head 'git://code.call-cc.org/chicken-core'
def install
ENV.deparallelize
- args = ["PREFIX=#{prefix}", "PLATFORM=macosx", "C_COMPILER=#{ENV.cc}"] # Chicken uses a non-standard var. for this
+ # Chicken uses a non-standard var. for this
+ args = ["PREFIX=#{prefix}", "PLATFORM=macosx", "C_COMPILER=#{ENV.cc}"]
args << "ARCH=x86-64" if MacOS.prefer_64_bit?
system "make", *args
system "make", "install", *args