aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chicken.rb
blob: 07743b3ac9b1f88e6ef427a4dfe5e4f7688d4416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Chicken < Formula
  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
    # 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
  end
end