sbcl: update to 2.4.6.
This commit is contained in:
parent
47e6b52ebd
commit
54e95b0700
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'sbcl'
|
||||
pkgname=sbcl
|
||||
version=2.4.5
|
||||
version=2.4.6
|
||||
revision=1
|
||||
# make sure the sbcl option in maxima is enabled for the same archs
|
||||
archs="i686 x86_64* armv7l aarch64 ppc64le*"
|
||||
|
@ -8,6 +8,7 @@ create_wrksrc="required"
|
|||
build_wrksrc=sbcl
|
||||
hostmakedepends="iana-etc texinfo"
|
||||
makedepends="libzstd-devel zlib-devel"
|
||||
checkdepends="strace which"
|
||||
conf_files="/etc/sbclrc"
|
||||
short_desc="Steel Bank Common Lisp"
|
||||
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||||
|
@ -15,7 +16,7 @@ license="custom:BSD+public_domain"
|
|||
homepage="http://www.sbcl.org/"
|
||||
changelog="http://www.sbcl.org/news.html"
|
||||
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}-source.tar.bz2"
|
||||
checksum=4df68e90c9031807642b4b761988deb5bf6a1bd152c4723482834efa735a7bd1
|
||||
checksum=a489907842dae09a1726d62985bf7a56670aaea2f3eca1fb7023bca67c3f3091
|
||||
nocross=yes
|
||||
nopie=yes
|
||||
|
||||
|
@ -23,7 +24,7 @@ _bootstrap_lisp="bash ../sbcl-*-linux/run-sbcl.sh --no-sysinit --no-userinit --d
|
|||
case "$XBPS_TARGET_MACHINE" in
|
||||
x86_64)
|
||||
distfiles+=" ${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}-x86-64-linux-binary.tar.bz2"
|
||||
checksum+=" b8cc3afbfc8d5e6d05c7a3137b682a909a0d7389d5861fb06cca649480c7e619"
|
||||
checksum+=" d9817247fb2734a089614509f37f97a2fea71bef4c7495c36931fcbd1faea0fd"
|
||||
;;
|
||||
arm*)
|
||||
distfiles+=" ${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-1.2.14-armhf-linux-binary.tar.bz2"
|
||||
|
@ -55,6 +56,13 @@ do_build() {
|
|||
make -C ./doc/manual info
|
||||
}
|
||||
|
||||
do_check() {
|
||||
(
|
||||
cd ./tests
|
||||
LINKFLAGS="-fno-pie -no-pie" sh run-tests.sh
|
||||
)
|
||||
}
|
||||
|
||||
do_install() {
|
||||
SBCL_HOME="" INSTALL_ROOT="$DESTDIR/usr" sh install.sh
|
||||
vlicense COPYING LICENSE
|
||||
|
|
Loading…
Reference in New Issue