Updated the SBCL package.

This commit is contained in:
Mid Favila 2021-06-13 21:46:00 +00:00
parent 22aad156dd
commit bac915412c
1 changed files with 16 additions and 15 deletions

View File

@ -4,21 +4,22 @@ if [ -x /bin/sbcl ] #Can we skip a bootstrap procedure?
then lsp=sbcl
elif [ -x /bin/ecl ]
then lsp=ecl
else #Guess not.
if [ -x /bin/axel ]
then axel https://gitlab.com/embeddable-common-lisp/ecl/-/archive/develop/ecl-develop.tar.bz2
else
curl https://gitlab.com/embeddable-common-lisp/ecl/-/archive/develop/ecl-develop.tar.bz2 --output ecl-develop.tar.bz2
fi
tar xf ecl-develop.tar.bz2
mkdir tools
cd ecl-develop
./configure --prefix=../tools/
make
make install
PATH="../tools/bin/:$PATH"
lsp=ecl
#else #Guess not.
# if [ -x /bin/axel ]
# then axel https://gitlab.com/embeddable-common-lisp/ecl/-/archive/develop/ecl-develop.tar.bz2
# else
# curl https://gitlab.com/embeddable-common-lisp/ecl/-/archive/develop/ecl-develop.tar.bz2 --output ecl-develop.tar.bz2
# fi
#
# tar xf ecl-develop.tar.bz2
# mkdir tools
# cd ecl-develop
# ./configure --prefix="$PWD/../tools/"
# make
# make install
# PATH="$PWD/../tools/bin/:$PATH"
# lsp=ecl
# cd ..
fi