Skip to content

Commit

Permalink
sbcl: new package at 2.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
echawk authored and phoebos committed Sep 27, 2024
1 parent d8ed6e0 commit 5e4814a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
17 changes: 17 additions & 0 deletions community/sbcl/build
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions community/sbcl/checksums
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4983e809f31dd43bc81f841ae469dd6b7c7ab6bafad6ce68d6cadea882bbb4c9ce
1 change: 1 addition & 0 deletions community/sbcl/sources
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/sbcl/sbcl/archive/refs/tags/sbcl-2.4.8.tar.gz
1 change: 1 addition & 0 deletions community/sbcl/version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.4.8 1

0 comments on commit 5e4814a

Please sign in to comment.