From 39aa3a29da83f73ed78f8a399b40788cdf1dc7e9 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 22 Aug 2020 15:19:32 -0600 Subject: [PATCH] Move Snobol from phase 4 to phase 6 --- scripts/docker-install-phase4.bash | 11 ----------- scripts/docker-install-phase6.bash | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/scripts/docker-install-phase4.bash b/scripts/docker-install-phase4.bash index 00b8560..2c9f416 100755 --- a/scripts/docker-install-phase4.bash +++ b/scripts/docker-install-phase4.bash @@ -244,17 +244,6 @@ mv "$HOME/.cache/coursier" /opt/coursier/cache wget -nv https://setl.org/setl/bin/Linux-x86-64bit/setlbin.tgz tar -xf setlbin.tgz -C /usr/local/bin -# Snobol -file="$(curl -sSL ftp://ftp.snobol4.org/snobol/ | grep -Eo 'snobol4-.*\.tar\.gz' | sort -rV | head -n1)" -wget -nv "ftp://ftp.snobol4.org/snobol/${file}" -tar -xf snobol4-*.tar.gz -rm snobol4-*.tar.gz -pushd snobol4-* >/dev/null -make || true -mv snobol4 /usr/local/bin/snobol4 -popd >/dev/null -rm -rf snobol4-* - # Swift wget -nv https://github.com/raxod502/riju-cdn/releases/download/swift-5.2.4-20.04/swift.tar.gz -O swift.tar.gz mkdir /opt/swift diff --git a/scripts/docker-install-phase6.bash b/scripts/docker-install-phase6.bash index 0da0891..bcbaf40 100755 --- a/scripts/docker-install-phase6.bash +++ b/scripts/docker-install-phase6.bash @@ -65,6 +65,17 @@ mv public/qlb/*.js /opt/qalb/ popd >/dev/null rm -rf qalb +# Snobol +file="$(curl -sSL ftp://ftp.snobol4.org/snobol/ | grep -Eo 'snobol4-.*\.tar\.gz' | sort -rV | head -n1)" +wget -nv "ftp://ftp.snobol4.org/snobol/${file}" +tar -xf snobol4-*.tar.gz +rm snobol4-*.tar.gz +pushd snobol4-* >/dev/null +make || true +mv snobol4 /usr/local/bin/snobol4 +popd >/dev/null +rm -rf snobol4-* + # Thue wget -nv "$(curl -sSL https://catseye.tc/distribution/Thue_distribution | grep -Eo 'https://catseye.tc/distfiles/thue-[^"]+\.zip' | head -n1)" unzip thue-*.zip