blob: 4b2a32c51913a9713e9d89eca86e5a111e08c9c9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | require 'formula'
class Chicken < Formula
  homepage 'http://www.call-cc.org/'
  url 'http://code.call-cc.org/releases/4.9.0/chicken-4.9.0.1.tar.gz'
  sha1 'd6ec6eb51c6d69e006cc72939b34855013b8535a'
  head 'git://code.call-cc.org/chicken-core'
  bottle do
    revision 1
    sha1 "336ed80fce3e2e2d548ad966b4a60d249523592d" => :mavericks
    sha1 "8a8b278480ab05e46452f61e64e4939cb5d12d3d" => :mountain_lion
    sha1 "e2a9863f311099590265704fe410f39de802c600" => :lion
  end
  def install
    ENV.deparallelize
    args = %W[
      PLATFORM=macosx
      PREFIX=#{prefix}
      C_COMPILER=#{ENV.cc}
      LIBRARIAN=ar
      POSTINSTALL_PROGRAM=install_name_tool
    ]
    system "make", *args
    system "make", "install", *args
  end
  test do
    assert_equal "25", shell_output("#{bin}/csi -e '(print (* 5 5))'").strip
  end
end
 |