homebrew-core/Formula/gambit-scheme.rb

50 lines
1.7 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.6/source/gambc-v4_6_6.tgz'
sha256 '4e8b18bb350124138d1f9bf143dda0ab5e55f3c3d489a6dc233a15a003f161d2'
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
# Gambit Scheme needs to know the real compilers used during compilation, as
# it writes these into its "gambit-cc" script. The superenv wrappers won't
# work for this.
# See: https://github.com/mxcl/homebrew/issues/17099
env :std
fails_with :llvm do
build 2335
cause "ld crashes during the build process or segfault at runtime"
end
2011-03-26 05:55:43 +00:00
def install
2012-03-11 04:39:45 +00:00
args = ["--disable-debug",
"--prefix=#{prefix}",
"--infodir=#{info}",
# Recommended to improve the execution speed and compactness
# of the generated executables. Increases compilation times.
"--enable-single-host"]
2012-08-30 16:09:48 +00:00
args << "--enable-shared" if build.include? 'enable-shared'
2012-03-11 04:39:45 +00:00
unless ENV.compiler == :gcc
opoo <<-EOS.undent
Gambit will build with GCC if an acceptable version is found on your
system, or Clang otherwise. If it finds only Clang, the build will
take a very, very long time. Programs built with Gambit after the
install may also tke a long time to compile.
You can remedy this by installing an apple-gcc* or gcc* package.
EOS
end
2012-03-11 04:39:45 +00:00
system "./configure", *args
2012-08-30 16:09:48 +00:00
system "make check" if build.include? 'with-check'
2009-11-05 22:22:59 +00:00
ENV.j1
system "make"
system "make install"
end
end