homebrew-core/Formula/chicken.rb

36 lines
837 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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'
2014-07-06 16:34:11 +00:00
bottle do
2014-09-22 00:55:38 +00:00
revision 1
sha1 "336ed80fce3e2e2d548ad966b4a60d249523592d" => :mavericks
sha1 "8a8b278480ab05e46452f61e64e4939cb5d12d3d" => :mountain_lion
sha1 "e2a9863f311099590265704fe410f39de802c600" => :lion
2014-07-06 16:34:11 +00:00
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
2014-05-04 19:12:41 +00:00
assert_equal "25", shell_output("#{bin}/csi -e '(print (* 5 5))'").strip
end
end