2011-02-18 06:20:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ChibiScheme < Formula
|
2011-11-28 02:28:00 +00:00
|
|
|
url 'http://chibi-scheme.googlecode.com/files/chibi-scheme-0.5.1.tgz'
|
2011-02-18 06:20:40 +00:00
|
|
|
homepage 'http://code.google.com/p/chibi-scheme/'
|
2011-11-28 02:28:00 +00:00
|
|
|
md5 'c29c4721cd31d6bcafd061dfcf622f46'
|
2011-11-28 12:24:16 +00:00
|
|
|
head 'https://code.google.com/p/chibi-scheme/', :using => :hg
|
2011-02-18 06:20:40 +00:00
|
|
|
|
|
|
|
def install
|
2011-11-24 12:20:18 +00:00
|
|
|
# "make" and "make install" must be done separately
|
|
|
|
system "make"
|
2011-02-18 06:20:40 +00:00
|
|
|
system "make install PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|