diff --git a/community/sbcl/build b/community/sbcl/build new file mode 100755 index 000000000..17eaf778c --- /dev/null +++ b/community/sbcl/build @@ -0,0 +1,17 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +echo "\"$2\"" > version.lisp-expr + +# If you already have sbcl installed, build with sbcl instead. +if command -v sbcl > /dev/null; then + ./make.sh --xc-host=sbcl --prefix=/usr --fancy +elif command -v ccl > /dev/null; then + ./make.sh --xc-host=ccl --prefix=/usr +elif command -v clisp > /dev/null; then + ./make.sh --xc-host=clisp --prefix=/usr +else + ./make.sh --xc-host=ecl --prefix=/usr +fi +INSTALL_ROOT="$1/usr" ./install.sh diff --git a/community/sbcl/checksums b/community/sbcl/checksums new file mode 100644 index 000000000..b0cf99068 --- /dev/null +++ b/community/sbcl/checksums @@ -0,0 +1 @@ +4983e809f31dd43bc81f841ae469dd6b7c7ab6bafad6ce68d6cadea882bbb4c9ce diff --git a/community/sbcl/sources b/community/sbcl/sources new file mode 100644 index 000000000..f1d781574 --- /dev/null +++ b/community/sbcl/sources @@ -0,0 +1 @@ +https://github.com/sbcl/sbcl/archive/refs/tags/sbcl-2.4.8.tar.gz diff --git a/community/sbcl/version b/community/sbcl/version new file mode 100644 index 000000000..e191d11ff --- /dev/null +++ b/community/sbcl/version @@ -0,0 +1 @@ +2.4.8 1