homebrew-core/Formula/gambit-scheme.rb

49 lines
1.5 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class GambitScheme < Formula
homepage 'http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page'
url 'http://www.iro.umontreal.ca/~gambit/download/gambit/v4.7/source/gambc-v4_7_2.tgz'
sha256 'c09597fa423602eb9d06b1ab3c1a63cd9c612b89f7f6d718f2c0a96da4d4ac1a'
2013-11-12 15:41:44 +00:00
conflicts_with 'ghostscript', :because => 'both install `gsc` binaries'
2013-11-12 15:39:07 +00:00
conflicts_with 'scheme48', :because => 'both install `scheme-r5rs` binaries'
2012-08-30 16:09:48 +00:00
option 'with-check', 'Execute "make check" before installing'
option 'enable-shared', 'Build Gambit Scheme runtime as shared library'
2011-03-26 05:55:43 +00:00
2013-11-09 05:59:25 +00:00
fails_with :llvm
2011-03-26 05:55:43 +00:00
def install
args = %W[
--disable-debug
--prefix=#{prefix}
--libdir=#{lib}/gambit-c
--infodir=#{info}
--docdir=#{doc}
]
# Recommended to improve the execution speed and compactness
# of the generated executables. Increases compilation times.
# Don't enable this when using clang, per configure warning.
args << "--enable-single-host" unless ENV.compiler == :clang
2012-08-30 16:09:48 +00:00
args << "--enable-shared" if build.include? 'enable-shared'
2012-03-11 04:39:45 +00:00
if ENV.compiler == :clang
opoo <<-EOS.undent
Gambit will build with Clang, however the build may take longer and
produce substandard binaries. If you have GCC, you can get a faster
build and faster execution with:
brew install gambit-scheme --cc=gcc-4.2 # or 4.7, 4.8, etc.
EOS
end
2012-03-11 04:39:45 +00:00
system "./configure", *args
system "make check" if build.with? "check"
2009-11-05 22:22:59 +00:00
ENV.j1
system "make"
system "make install"
end
end