void-packages/srcpkgs/texlive2020-bin/INSTALL
Leah Neukirchen 25aeea4f41 texlive2020-bin: use historic texlive repository.
As texlive2021 has been released the default repository no longer
contains the 2020 version. Make the installer use the frozen
historic one.
2021-04-18 15:14:00 +02:00

16 lines
394 B
Plaintext

case "${ACTION}" in
post)
case "${UPDATE}" in
no)
cd opt/texlive2020-installer
case "${ARCH}" in
x86_64-musl)
./install-tl -repository ftp://ftp.tug.org/texlive/historic/2020/tlnet-final/ -profile void.profile -force-platform x86_64-linuxmusl
;;
*)
./install-tl -repository ftp://ftp.tug.org/texlive/historic/2020/tlnet-final/ -profile void.profile
;;
esac
esac
esac