blob: 6daf424a9d02df9a90790c1a5da1b994e01aeb47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
require 'formula'
class GambitScheme <Formula
url 'http://www.iro.umontreal.ca/~gambit/download/gambit/v4.5/source/gambc-v4_5_2.tgz'
homepage 'http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Main_Page'
md5 '71bd4b5858f807c4a8ce6ce68737db16'
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
def install
# Gambit Scheme currently fails to build with llvm-gcc
# (ld crashes during the build process)
ENV.gcc_4_2
# Gambit Scheme doesn't like full optimizations
ENV.O2
configure_args = [
"--prefix=#{prefix}",
"--disable-debug",
# Recommended to improve the execution speed and compactness
# of the generated executables. Increases compilation times.
"--enable-single-host"
]
configure_args << "--enable-shared" if ARGV.include? '--enable-shared'
system "./configure", *configure_args
system "make check" if ARGV.include? '--with-check'
ENV.j1
system "make"
system "make install"
end
end
|