homebrew-core/Formula/gauche.rb
Tomoki Aonuma 3b5c59bbb2 gauche 0.9.1
Gauche is an R5RS Scheme implementation.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-13 13:59:18 -07:00

16 lines
475 B
Ruby

require 'formula'
class Gauche <Formula
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.1.tgz'
homepage 'http://practical-scheme.net/gauche/'
md5 '6134e9c16aef2bc9fd3fa7e8fbebdd10'
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