2011-03-08 10:32:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 20:01:12 +00:00
|
|
|
class Gauche < Formula
|
2011-08-06 15:13:23 +00:00
|
|
|
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.2.tgz'
|
2011-03-08 10:32:07 +00:00
|
|
|
homepage 'http://practical-scheme.net/gauche/'
|
2011-08-06 15:13:23 +00:00
|
|
|
md5 '9979de5be0e35e57131508c4c606f5cb'
|
2011-03-08 10:32:07 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-multibyte=utf-8"
|
|
|
|
system "make"
|
|
|
|
system "make check"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|