aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gauche.rb
diff options
context:
space:
mode:
authornibbles 2bits2012-05-12 18:46:32 -0700
committerJack Nagel2012-05-13 13:31:38 -0500
commitd1c20f55839723f9cd16e5c1c77472938259950a (patch)
tree45f499aba6c1d8484a7f883b17c95a0e83e4a0f8 /Library/Formula/gauche.rb
parentfbbc96eff49ba5e7a8aae4831b3fea6440f7acf8 (diff)
downloadhomebrew-d1c20f55839723f9cd16e5c1c77472938259950a.tar.bz2
gauche 0.9.3.2
Upgrade gauche to version 0.9.3.2 and remove the unrecognized `--disable-debug` flag. Gauche will build against gdbm-1.10 if it is installed, usually as a dep of Python, but it's optional. Gauche builds just fine without it. Closes #12218. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/gauche.rb')
-rw-r--r--Library/Formula/gauche.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/gauche.rb b/Library/Formula/gauche.rb
index 90ecfdc67..6ecbeab4b 100644
--- a/Library/Formula/gauche.rb
+++ b/Library/Formula/gauche.rb
@@ -1,14 +1,13 @@
require 'formula'
class Gauche < Formula
- url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.2.tgz'
homepage 'http://practical-scheme.net/gauche/'
- md5 '9979de5be0e35e57131508c4c606f5cb'
+ url 'http://downloads.sourceforge.net/gauche/Gauche/Gauche-0.9.3.2.tgz'
+ sha1 'e2e3f4553674d02a0800c981325de3fef858d9f6'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--enable-multibyte=utf-8"
+ system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking',
+ '--enable-multibyte=utf-8'
system "make"
system "make check"
system "make install"