diff options
| author | Tomoki Aonuma | 2011-03-08 19:32:07 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-13 13:59:18 -0700 |
| commit | 10507c85e35678d5f07747ae434bf3d40dcb7401 (patch) | |
| tree | 1bcce202b8724bc96c0f1e79a899b838829bfc66 /Library/Formula | |
| parent | 2f27726a380f1fbe80607cf1ea3629f1d51b0c19 (diff) | |
| download | homebrew-10507c85e35678d5f07747ae434bf3d40dcb7401.tar.bz2 | |
gauche 0.9.1
Gauche is an R5RS Scheme implementation.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gauche.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/gauche.rb b/Library/Formula/gauche.rb new file mode 100644 index 000000000..2122954dc --- /dev/null +++ b/Library/Formula/gauche.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Gauche <Formula + url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.1.tgz' + homepage 'http://practical-scheme.net/gauche/' + md5 '6134e9c16aef2bc9fd3fa7e8fbebdd10' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--enable-multibyte=utf-8" + system "make" + system "make check" + system "make install" + end +end |
