blob: 90ecfdc67bf2a11358d30f69680219c231fdd51f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Gauche < Formula
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.2.tgz'
homepage 'http://practical-scheme.net/gauche/'
md5 '9979de5be0e35e57131508c4c606f5cb'
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
|