homebrew-core/Formula/chicken.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

14 lines
398 B
Ruby

require 'formula'
class Chicken <Formula
@url='http://www.call-with-current-continuation.org/chicken-4.2.0.tar.gz'
@homepage='http://www.call-with-current-continuation.org/'
@md5='4705b7634447a571ff083f435c110fe3'
def install
ENV.deparallelize
settings = "PREFIX=#{prefix} PLATFORM=macosx ARCH=x86-64"
system "make #{settings}"
system "make install #{settings}"
end
end