blob: b0ac0e132ec5e4be24705402c5bdf33a9e087722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Gauche < Formula
homepage 'http://practical-scheme.net/gauche/'
url 'https://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.3.3.tgz'
sha1 '71d7ca3eceb9adc1de33455c1616cbed89d226f7'
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking',
'--enable-multibyte=utf-8'
system "make"
system "make check"
system "make install"
end
end
|