aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gauche.rb
blob: 6ecbeab4b1f664c81a517c9030c4b7b6a34bd18b (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 '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