homebrew-core/Formula/gauche.rb
nibbles 2bits a4f8ae5f88 gauche 0.9.3.2
Upgrade gauche to version 0.9.3.2 and remove the unrecognized
`--disable-debug` flag.  Gauche will build against gdbm-1.10
if it is installed, usually as a dep of Python, but it's optional.
Gauche builds just fine without it.

Closes Homebrew/homebrew#12218.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-13 13:31:38 -05:00

15 lines
442 B
Ruby

require 'formula'
class Gauche < Formula
homepage 'http://practical-scheme.net/gauche/'
url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.3.2.tgz'
sha1 'e2e3f4553674d02a0800c981325de3fef858d9f6'
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking',
'--enable-multibyte=utf-8'
system "make"
system "make check"
system "make install"
end
end