81 lines
2.9 KiB
Ruby
81 lines
2.9 KiB
Ruby
class Sbcl < Formula
|
|
desc "Steel Bank Common Lisp system"
|
|
homepage "http://www.sbcl.org/"
|
|
url "https://downloads.sourceforge.net/project/sbcl/sbcl/2.0.11/sbcl-2.0.11-source.tar.bz2"
|
|
sha256 "87d2aa53cef092119a1c8b2f3de48d209375a674c3b60e08596838013bd7971d"
|
|
license all_of: [:public_domain, "MIT", "Xerox", "BSD-3-Clause"]
|
|
head "https://git.code.sf.net/p/sbcl/sbcl.git", shallow: false
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, big_sur: "e6a0d4ba798d435a261e93062461a15801a42af1cab9344cdeab824b00112318"
|
|
sha256 cellar: :any_skip_relocation, catalina: "82afe9ba6dad370ba0895be28b3591eeae9bb88fbba93a916637cea1e6b140c3"
|
|
sha256 cellar: :any_skip_relocation, mojave: "a8eadb8a7b8a092995d0f29f4b68cf5450c070dd41bdf3f9f15e4907b516d48b"
|
|
end
|
|
|
|
depends_on arch: :x86_64
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
# Current binary versions are listed at https://sbcl.sourceforge.io/platform-table.html
|
|
resource "bootstrap64" do
|
|
on_macos do
|
|
url "https://downloads.sourceforge.net/project/sbcl/sbcl/1.2.11/sbcl-1.2.11-x86-64-darwin-binary.tar.bz2"
|
|
sha256 "057d3a1c033fb53deee994c0135110636a04f92d2f88919679864214f77d0452"
|
|
end
|
|
on_linux do
|
|
url "https://downloads.sourceforge.net/project/sbcl/sbcl/1.3.3/sbcl-1.3.3-x86-64-linux-binary.tar.bz2"
|
|
sha256 "e8b1730c42e4a702f9b4437d9842e91cb680b7246f88118c7443d7753e61da65"
|
|
end
|
|
end
|
|
|
|
def install
|
|
# Remove non-ASCII values from environment as they cause build failures
|
|
# More information: https://bugs.gentoo.org/show_bug.cgi?id=174702
|
|
ENV.delete_if do |_, value|
|
|
ascii_val = value.dup
|
|
ascii_val.force_encoding("ASCII-8BIT") if ascii_val.respond_to? :force_encoding
|
|
ascii_val =~ /[\x80-\xff]/n
|
|
end
|
|
|
|
tmpdir = Pathname.new(Dir.mktmpdir)
|
|
resource("bootstrap64").unpack tmpdir
|
|
|
|
command = "#{tmpdir}/src/runtime/sbcl"
|
|
core = "#{tmpdir}/output/sbcl.core"
|
|
xc_cmdline = "#{command} --core #{core} --disable-debugger --no-userinit --no-sysinit"
|
|
|
|
args = [
|
|
"--prefix=#{prefix}",
|
|
"--xc-host=#{xc_cmdline}",
|
|
"--with-sb-core-compression",
|
|
"--with-sb-ldb",
|
|
"--with-sb-thread",
|
|
]
|
|
|
|
ENV["SBCL_MACOSX_VERSION_MIN"] = MacOS.version
|
|
system "./make.sh", *args
|
|
|
|
ENV["INSTALL_ROOT"] = prefix
|
|
system "sh", "install.sh"
|
|
|
|
# Install sources
|
|
bin.env_script_all_files libexec/"bin",
|
|
SBCL_SOURCE_ROOT: pkgshare/"src",
|
|
SBCL_HOME: lib/"sbcl"
|
|
pkgshare.install %w[contrib src]
|
|
(lib/"sbcl/sbclrc").write <<~EOS
|
|
(setf (logical-pathname-translations "SYS")
|
|
'(("SYS:SRC;**;*.*.*" #p"#{pkgshare}/src/**/*.*")
|
|
("SYS:CONTRIB;**;*.*.*" #p"#{pkgshare}/contrib/**/*.*")))
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"simple.sbcl").write <<~EOS
|
|
(write-line (write-to-string (+ 2 2)))
|
|
EOS
|
|
output = shell_output("#{bin}/sbcl --script #{testpath}/simple.sbcl")
|
|
assert_equal "4", output.strip
|
|
end
|
|
end
|