homebrew-core/Formula/gauche.rb
Franck Cuny 923538472b gauche 0.9.3.3
Closes Homebrew/homebrew#16633.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-17 21:12:51 -08: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.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