2011-03-08 10:32:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 20:01:12 +00:00
|
|
|
class Gauche < Formula
|
2011-03-08 10:32:07 +00:00
|
|
|
homepage 'http://practical-scheme.net/gauche/'
|
2012-12-18 04:20:37 +00:00
|
|
|
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.3.3.tgz'
|
|
|
|
sha1 '71d7ca3eceb9adc1de33455c1616cbed89d226f7'
|
2011-03-08 10:32:07 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-13 01:46:32 +00:00
|
|
|
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking',
|
|
|
|
'--enable-multibyte=utf-8'
|
2011-03-08 10:32:07 +00:00
|
|
|
system "make"
|
|
|
|
system "make check"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|