diff options
author | Norbert Preining <preining@logic.at> | 2018-03-05 15:34:41 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-03-05 15:34:41 +0000 |
commit | 91785746e58edc791ecf402be4627b643cbdb4e5 (patch) | |
tree | 97f5381d5352b5ebb731c16c0e74b69f854925ba /Master/tlpkg/bin | |
parent | 98f74fe4098cce9113e99992cb1e959919a3b498 (diff) |
musl support
git-svn-id: svn://tug.org/texlive/trunk@46834 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index cf72d798fd8..899589bd31f 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -144,6 +144,10 @@ for tlplat in $tlplats; do #default_bin_loc=/tmp/lin32.tgz;; default_bin_loc=$download_loc $grab http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz;; + i386-linuxmusl) + default_bin_loc=$download_loc + remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/latest | grep browser_download_url | grep texlive-bin-i386-musl.tar.gz | cut -d : -f 2,3 | tr -d \"` + $grab $remurl;; i386-netbsd) download_loc=$tmpdir/tl.$tlplat.tar.xz default_bin_loc=$download_loc @@ -187,6 +191,10 @@ for tlplat in $tlplats; do default_bin_loc=$download_loc $grab http://www.preining.info/x86_64-linux-svn46780.tar.gz ;; + x86_64-linuxmusl) + default_bin_loc=$download_loc + remurl=`curl -s https://api.github.com/repos/TeX-Live/texlive-source/releases/latest | grep browser_download_url | grep texlive-bin-x86_64-musl.tar.gz | cut -d : -f 2,3 | tr -d \"` + $grab $remurl;; x86_64-solaris) default_bin_loc=$download_loc $grab http://dl.contextgarden.net/build/texlive/$tlplat.tar.xz;; |