Created
March 8, 2011 10:03
-
-
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' でインストール
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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