aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-04-07 10:28:39 -0500
committerJack Nagel2014-04-07 10:28:39 -0500
commitae12e882fd9fc4bc80f5532a14807626306bb711 (patch)
treee54968fb39c0139a2ad1b3a20c3e81e377666540 /Library/Formula
parentb3e2c54f4500bbde4e0e973078bace3d8de6947c (diff)
downloadhomebrew-ae12e882fd9fc4bc80f5532a14807626306bb711.tar.bz2
scheme48 1.9.1
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/scheme48.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/scheme48.rb b/Library/Formula/scheme48.rb
index e82152917..621ac1f2c 100644
--- a/Library/Formula/scheme48.rb
+++ b/Library/Formula/scheme48.rb
@@ -2,8 +2,8 @@ require 'formula'
class Scheme48 < Formula
homepage 'http://www.s48.org/'
- url 'http://s48.org/1.9/scheme48-1.9.tgz'
- sha1 '8fd78d328a8c39ecd848e849ade094c30c2bb4ba'
+ url 'http://s48.org/1.9.1/scheme48-1.9.1.tgz'
+ sha1 'dfc5f58b2e175216aa850910c761238774c1b7b1'
conflicts_with 'gambit-scheme', :because => 'both install `scheme-r5rs` binaries'
conflicts_with 'scsh', :because => 'both install include/scheme48.h'
@@ -11,9 +11,7 @@ class Scheme48 < Formula
def install
ENV.O0 if ENV.compiler == :clang
ENV.deparallelize
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--enable-gc=bibop"
+ system "./configure" "--prefix=#{prefix}", "--enable-gc=bibop"
system "make"
system "make install"
end