INSTALL 486 B

12345678910111213141516
  1. case "${ACTION}" in
  2. post)
  3. case "${UPDATE}" in
  4. no)
  5. cd opt/texlive2019-installer
  6. case "${ARCH}" in
  7. x86_64-musl)
  8. ./install-tl -profile xbps.profile -repository https://ftp.tu-chemnitz.de/pub/tug/historic/systems/texlive/2019/tlnet-final/ -no-verify-downloads -force-platform x86_64-linuxmusl
  9. ;;
  10. *)
  11. ./install-tl -profile xbps.profile -repository https://ftp.tu-chemnitz.de/pub/tug/historic/systems/texlive/2019/tlnet-final/ -no-verify-downloads
  12. ;;
  13. esac
  14. esac
  15. esac