X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/9fb3cdee189d512d3d002c1006f4518faa277541..4790864684b716eba502f1fa92ee4a3f0b563a1f:/packages/picolisp/build.sh diff --git a/packages/picolisp/build.sh b/packages/picolisp/build.sh index 6da6885f..67638ae0 100644 --- a/packages/picolisp/build.sh +++ b/packages/picolisp/build.sh @@ -2,13 +2,17 @@ TERMUX_PKG_HOMEPAGE=http://picolisp.com TERMUX_PKG_DESCRIPTION="Lisp interpreter and application server framework" TERMUX_PKG_DEPENDS="libcrypt, openssl" _PICOLISP_YEAR=16 -_PICOLISP_MONTH=6 -_PICOLISP_DAY=19 +_PICOLISP_MONTH=8 +_PICOLISP_DAY=26 TERMUX_PKG_VERSION=${_PICOLISP_YEAR}.${_PICOLISP_MONTH}.${_PICOLISP_DAY} -TERMUX_PKG_SRCURL=http://software-lab.de/picoLisp.tgz -TERMUX_PKG_NO_SRC_CACHE=yes +# We use our bintray mirror since old version snapshots are not kept on main site. +# TERMUX_PKG_SRCURL=http://software-lab.de/picoLisp.tgz +TERMUX_PKG_SRCURL=https://dl.bintray.com/termux/upstream/picolisp_${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_SHA256=018015672e2abdc58b01b4da9b68899f9fc3d671e3faf464d77367a839621c7c TERMUX_PKG_FOLDERNAME=picoLisp TERMUX_PKG_BUILD_IN_SRC=true +# The assembly is not position-independent (would be a major rewrite): +TERMUX_PKG_BLACKLISTED_ARCHES="x86_64" termux_step_pre_configure() { # Validate that we have the right version: @@ -22,12 +26,8 @@ termux_step_pre_configure() { cd $TERMUX_PKG_SRCDIR if [ $TERMUX_ARCH = "aarch64" ]; then export TERMUX_PKG_EXTRA_MAKE_ARGS=arm64.linux - termux_download http://software-lab.de/arm64.linux.tgz $TERMUX_PKG_TMPDIR/arm64.linux.tgz - tar xf $TERMUX_PKG_TMPDIR/arm64.linux.tgz elif [ $TERMUX_ARCH = "x86_64" ]; then export TERMUX_PKG_EXTRA_MAKE_ARGS=x86-64.linux - termux_download http://software-lab.de/x86-64.linux.tgz $TERMUX_PKG_TMPDIR/x86-64.linux.tgz - tar xf $TERMUX_PKG_TMPDIR/x86-64.linux.tgz else echo "Error: Unsupported arch: $TERMUX_ARCH" exit 1