Move Snobol from phase 4 to phase 6
This commit is contained in:
parent
2a2ab3336f
commit
39aa3a29da
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue