2010-05-17 23:20:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SbclBootstrapBinaries < Formula
|
2012-12-17 09:50:39 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.0/sbcl-1.1.0-x86-64-darwin-binary.tar.bz2'
|
|
|
|
sha1 'ed2069e124027c43926728c48d604efbb4e33950'
|
|
|
|
version "1.1.0"
|
2011-01-18 18:07:05 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sbcl < Formula
|
2010-05-17 23:20:10 +00:00
|
|
|
homepage 'http://www.sbcl.org/'
|
2013-02-23 08:29:17 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.4/sbcl-1.1.4-source.tar.bz2'
|
|
|
|
sha1 '57c1055821e4ad1c9c1b2b75fa972c5ae7ca86d0'
|
2012-08-23 04:43:33 +00:00
|
|
|
|
2011-06-07 20:09:19 +00:00
|
|
|
head 'git://sbcl.git.sourceforge.net/gitroot/sbcl/sbcl.git'
|
2011-01-18 18:07:05 +00:00
|
|
|
|
2013-02-23 09:50:41 +00:00
|
|
|
bottle do
|
|
|
|
sha1 'f3a56af6651fad229616ce0ad182fa4829b1c0f2' => :mountain_lion
|
|
|
|
sha1 'cec671e27e8a23ff8b9c6f8d15549a7cfc688bcb' => :lion
|
|
|
|
sha1 'f148420a1d44f0a8e5fe56ac57639fe6421a22c3' => :snow_leopard
|
|
|
|
end
|
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
cause "Compilation fails with LLVM."
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2012-08-23 04:43:33 +00:00
|
|
|
option "32-bit"
|
|
|
|
option "without-threads", "Build SBCL without support for native threads"
|
|
|
|
option "with-ldb", "Include low-level debugger in the build"
|
|
|
|
option "with-internal-xref", "Include XREF information for SBCL internals (increases core size by 5-6MB)"
|
2011-01-24 06:09:38 +00:00
|
|
|
|
2011-03-29 18:18:58 +00:00
|
|
|
def patches
|
2011-11-27 20:09:49 +00:00
|
|
|
{ :p0 => [
|
2012-01-16 10:55:40 +00:00
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-base-target-features.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-make-doc.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-posix-tests.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-use-mach-exception-handler.diff"
|
2011-11-27 20:09:49 +00:00
|
|
|
]}
|
2011-03-29 18:18:58 +00:00
|
|
|
end
|
|
|
|
|
2011-01-24 06:09:38 +00:00
|
|
|
def write_features
|
|
|
|
features = []
|
2012-08-23 04:43:33 +00:00
|
|
|
features << ":sb-thread" unless build.include? "without-threads"
|
|
|
|
features << ":sb-ldb" if build.include? "with-ldb"
|
|
|
|
features << ":sb-xref-for-internals" if build.include? "with-internal-xref"
|
2011-01-24 06:09:38 +00:00
|
|
|
|
|
|
|
File.open("customize-target-features.lisp", "w") do |file|
|
|
|
|
file.puts "(lambda (list)"
|
|
|
|
features.each do |f|
|
|
|
|
file.puts " (pushnew #{f} list)"
|
|
|
|
end
|
|
|
|
file.puts " list)"
|
|
|
|
end
|
2011-01-28 17:03:17 +00:00
|
|
|
end
|
|
|
|
|
2010-05-17 23:20:10 +00:00
|
|
|
def install
|
2011-01-24 06:09:38 +00:00
|
|
|
write_features
|
|
|
|
|
2011-04-04 02:55:04 +00:00
|
|
|
# Remove non-ASCII values from environment as they cause build failures
|
2011-04-03 15:21:29 +00:00
|
|
|
# More information: http://bugs.gentoo.org/show_bug.cgi?id=174702
|
|
|
|
ENV.delete_if do |key, value|
|
2013-02-10 21:26:07 +00:00
|
|
|
value =~ /[\x80-\xff]/n
|
2011-04-03 15:21:29 +00:00
|
|
|
end
|
|
|
|
|
2012-05-15 18:31:21 +00:00
|
|
|
SbclBootstrapBinaries.new.brew do
|
2011-01-24 06:09:38 +00:00
|
|
|
# We only need the binaries for bootstrapping, so don't install anything:
|
2011-01-18 18:07:05 +00:00
|
|
|
command = Dir.pwd + "/src/runtime/sbcl"
|
|
|
|
core = Dir.pwd + "/output/sbcl.core"
|
|
|
|
xc_cmdline = "#{command} --core #{core} --disable-debugger --no-userinit --no-sysinit"
|
|
|
|
|
2012-02-24 20:50:21 +00:00
|
|
|
cd buildpath do
|
2012-08-23 04:43:33 +00:00
|
|
|
ENV['SBCL_ARCH'] = 'x86' if build.build_32_bit?
|
2012-05-15 18:31:21 +00:00
|
|
|
system "./make.sh", "--prefix=#{prefix}", "--xc-host=#{xc_cmdline}"
|
2011-09-05 01:49:16 +00:00
|
|
|
end
|
2012-05-15 18:31:21 +00:00
|
|
|
end
|
2011-01-24 06:09:38 +00:00
|
|
|
|
2010-05-17 23:20:10 +00:00
|
|
|
ENV['INSTALL_ROOT'] = prefix
|
|
|
|
system "sh install.sh"
|
|
|
|
end
|
2013-01-21 02:04:24 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If you are upgrading sbcl and you have installed maxima,
|
|
|
|
you have to reinstall maxima:
|
|
|
|
|
|
|
|
brew rm maxima && brew install maxima
|
|
|
|
EOS
|
|
|
|
end
|
2010-05-17 23:20:10 +00:00
|
|
|
end
|