2009-10-26 14:44:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GambitScheme < Formula
|
2009-10-26 14:44:50 +00:00
|
|
|
homepage 'http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page'
|
2012-03-11 04:39:45 +00:00
|
|
|
url 'http://www.iro.umontreal.ca/~gambit/download/gambit/v4.6/source/gambc-v4_6_4.tgz'
|
|
|
|
md5 'f4a65f834b36b7ffbd0292021889a8e3'
|
2009-10-26 14:44:50 +00:00
|
|
|
|
2009-10-26 15:52:46 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--with-check', 'Execute "make check" before installing. Runs some basic scheme programs to ensure that gsi and gsc are working'],
|
|
|
|
['--enable-shared', 'Build Gambit Scheme runtime as shared library']
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2011-03-26 05:55:43 +00:00
|
|
|
skip_clean :all
|
|
|
|
|
2012-02-04 23:49:19 +00:00
|
|
|
fails_with_llvm "ld crashes during the build process or segfault at runtime", :build => 2335
|
2011-03-26 05:55:43 +00:00
|
|
|
|
2009-10-26 14:44:50 +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"]
|
|
|
|
args << "--enable-shared" if ARGV.include? '--enable-shared'
|
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-26 15:52:46 +00:00
|
|
|
system "make check" if ARGV.include? '--with-check'
|
2009-11-05 22:22:59 +00:00
|
|
|
|
|
|
|
ENV.j1
|
|
|
|
system "make"
|
2009-10-26 14:44:50 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|