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/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://chibi-scheme.googlecode.com/files/chibi-scheme-0.6.1.tgz'
|
2012-12-05 14:14:07 +00:00
|
|
|
sha1 '8cf1d35aaceaebc1b305e4ee3b872f3ce014106a'
|
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
|
2013-08-01 20:31:50 +00:00
|
|
|
ENV.deparallelize
|
|
|
|
|
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
|