homebrew-core/Formula/chicken.rb

16 lines
463 B
Ruby
Raw Normal View History

require 'formula'
class Chicken <Formula
2009-12-15 11:30:03 +00:00
url 'http://www.call-with-current-continuation.org/chicken-4.3.0.tar.gz'
2009-11-26 06:46:59 +00:00
homepage 'http://www.call-with-current-continuation.org/'
2009-12-15 11:30:03 +00:00
md5 '4c8e0b8100ca6537c1198a5c2555c8c0'
def install
ENV.deparallelize
settings = "PREFIX=#{prefix} PLATFORM=macosx"
settings << " ARCH=x86-64" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6
system "make #{settings}"
system "make install #{settings}"
end
end