texlive: Move files to std locations [WIP]
[termux-packages] / packages / texlive / build.sh
index f42bbe9..2123e09 100644 (file)
@@ -4,7 +4,7 @@ TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
 _MAJOR_VERSION=20170524
 _MINOR_VERSION=
 TERMUX_PKG_VERSION=${_MAJOR_VERSION}${_MINOR_VERSION}
-TERMUX_PKG_REVISION=3
+TERMUX_PKG_REVISION=4
 TERMUX_PKG_SRCURL=("ftp://ftp.tug.org/texlive/historic/${TERMUX_PKG_VERSION:0:4}/"\
 {"texlive-$_MAJOR_VERSION-texmf.tar.xz",\
 "texlive-$_MAJOR_VERSION-extra.tar.xz",\
@@ -21,8 +21,8 @@ TL_FILE_LISTS=("texlive-texmf.list"
 "install-tl.list")
 TERMUX_PKG_PLATFORM_INDEPENDENT=yes
 
-TL_ROOT=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4}
-TL_BINDIR=$TL_ROOT/bin/custom
+TL_ROOT=$TERMUX_PREFIX/share
+TL_BINDIR=$TERMUX_PREFIX/bin
 
 termux_step_extract_package() {
        mkdir -p "$TERMUX_PKG_SRCDIR"
@@ -47,16 +47,16 @@ termux_step_make() {
        for index in $( seq 0 2 ); do
                cp -r $TERMUX_PKG_SRCDIR/${TERMUX_PKG_FOLDERNAME[$index]}/* $TL_ROOT/
        done
-
+       
        mkdir -p $TL_ROOT/{tlpkg/{backups,tlpobj},texmf-var/web2c}
        cp $TERMUX_PKG_BUILDER_DIR/texlive.tlpdb $TL_ROOT/tlpkg/
-
+       
        perl -I$TL_ROOT/tlpkg/ $TL_ROOT/texmf-dist/scripts/texlive/mktexlsr.pl $TL_ROOT/texmf-dist
 }
 
 termux_step_create_debscripts () {
        # Clean texlive's folder if needed (run on upgrade)
-       echo "#!$TERMUX_PREFIX/bin/sh" > preinst
+       echo "#!$TERMUX_PREFIX/bin/bash" > preinst
        echo "if [ ! -f $TERMUX_PREFIX/opt/texlive/2016/install-tl -a ! -f $TERMUX_PREFIX/opt/texlive/2017/install-tl ]; then exit 0; else echo 'Removing residual files from old version of TeX Live for Termux'; fi" >> preinst
        echo "rm -rf $TERMUX_PREFIX/etc/profile.d/texlive.sh" >> preinst
        echo "rm -rf $TERMUX_PREFIX/opt/texlive/2016" >> preinst
@@ -67,9 +67,9 @@ termux_step_create_debscripts () {
        echo "exit 0" >> preinst
        chmod 0755 preinst
        
-       echo "#!$TERMUX_PREFIX/bin/sh" > postinst
+       echo "#!$TERMUX_PREFIX/bin/bash" > postinst
        echo "mkdir -p $TL_ROOT/{tlpkg/{backups,tlpobj},texmf-var/{web2c,tex/generic/config}}" >> postinst
-       echo "export PATH=\$PATH:$TL_BINDIR" >> postinst
+       echo "export TMPDIR=$TERMUX_PREFIX/tmp" >> postinst
        echo "echo Updating tlmgr" >> postinst
        echo "tlmgr update --self" >> postinst
        echo "echo Generating language files and setting up symlinks" >> postinst
@@ -82,15 +82,12 @@ termux_step_create_debscripts () {
        echo "echo 'TeX Live is a joint project of the TeX user groups around the world;'" >> postinst
        echo "echo 'please consider supporting it by joining the group best for you.'" >> postinst
        echo "echo 'The list of groups is available on the web at http://tug.org/usergroups.html.'" >> postinst
-       echo "echo ''" >> postinst
-       echo "echo 'Please run \"source $PREFIX/etc/profile.d/texlive.sh\" to add texlive'\''s binaries to your current shell'\''s PATH.'" >> postinst
        echo "exit 0" >> postinst
        chmod 0755 postinst
 
        # Remove all files installed through tlmgr on removal
-       echo "#!$TERMUX_PREFIX/bin/sh" > prerm
+       echo "#!$TERMUX_PREFIX/bin/bash" > prerm
        echo 'if [ $1 != "remove" ]; then exit 0; fi' >> prerm
-       #echo "tlmgr remove --dry-run "
        echo "echo Running texlinks --unlink" >> prerm
        echo "texlinks --unlink" >> prerm
        echo "echo Removing texmf-dist" >> prerm