Skip to content

Instantly share code, notes, and snippets.

@VoQn
Created March 8, 2011 10:03
Show Gist options
  • Save VoQn/860109 to your computer and use it in GitHub Desktop.
Save VoQn/860109 to your computer and use it in GitHub Desktop.
HomeBrew 用 Gauche-0.9.1 用の Formula. /usr/local/Library/Fomula/ に置いて 'brew install gauche' でインストール
require 'formula'
class Gauche < Formula
url 'http://jaist.dl.sourceforge.net/gauche/Gauche/Gauche-0.9.1.tgz'
homepage 'http://practical-scheme.net/gauche/'
md5 ''
def install
system "./configure", "--enable-multibyte=utf-8", "--prefix=#{prefix}"
system "make"
system "make check"
system "make install"
end
def uninstall
system "make uninstall"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment