homebrew-core/Formula/chibi-scheme.rb

14 lines
354 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class ChibiScheme < Formula
url 'http://chibi-scheme.googlecode.com/files/chibi-scheme-0.5.1.tgz'
homepage 'http://code.google.com/p/chibi-scheme/'
md5 'c29c4721cd31d6bcafd061dfcf622f46'
def install
# "make" and "make install" must be done separately
system "make"
system "make install PREFIX=#{prefix}"
end
end