Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
chicken 4.8.0.1
Browse files Browse the repository at this point in the history
Closes #17157.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
richo authored and adamv committed Jan 18, 2013
1 parent 8989282 commit d28df46
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Library/Formula/chicken.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d28df46

Please sign in to comment.