2011-02-18 06:20:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ChibiScheme < Formula
|
2011-02-18 06:20:40 +00:00
|
|
|
homepage 'http://code.google.com/p/chibi-scheme/'
|
2012-03-11 02:31:25 +00:00
|
|
|
url 'http://chibi-scheme.googlecode.com/files/chibi-scheme-0.5.3.tgz'
|
2012-01-18 02:17:29 +00:00
|
|
|
md5 '26941ff819ee51056c700d94b7cb95c0'
|
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"
|
2012-03-11 02:31:25 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2011-02-18 06:20:40 +00:00
|
|
|
end
|
|
|
|
end
|