X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/26e4ec30cfaafa3e88a497d8d8efb3382a91e52c..f547c930a23c0101f1f80e40e2528b619d995063:/packages/texlive-bin/build.sh diff --git a/packages/texlive-bin/build.sh b/packages/texlive-bin/build.sh index 6127915c..9caea820 100644 --- a/packages/texlive-bin/build.sh +++ b/packages/texlive-bin/build.sh @@ -1,13 +1,12 @@ TERMUX_PKG_HOMEPAGE=https://www.tug.org/texlive/ TERMUX_PKG_DESCRIPTION="TeX Live is a distribution of the TeX typesetting system. This package contains architecture dependent binaries." TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91" -TERMUX_PKG_VERSION=20170524 -TERMUX_PKG_REVISION=8 -TERMUX_PKG_SRCURL=ftp://tug.org/historic/systems/texlive/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}-source.tar.xz -TERMUX_PKG_SHA256="0161695304e941334dc0b3b5dabcf8edf46c09b7bc33eea8229b5ead7ccfb2aa" +TERMUX_PKG_VERSION=20180414 +TERMUX_PKG_SRCURL=ftp://tug.org/texlive/historic/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}-source.tar.xz +TERMUX_PKG_SHA256="fe0036d5f66708ad973cdc4e413c0bb9ee2385224481f7b0fb229700a0891e4e" TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, teckit" TERMUX_PKG_BUILD_DEPENDS="icu-devtools" -TERMUX_PKG_BREAKS="texlive (<< 20170524-3)" +TERMUX_PKG_BREAKS="texlive (<< 20180414)" TERMUX_PKG_REPLACES="texlive (<< 20170524-3)" TERMUX_PKG_RECOMMENDS="texlive" TERMUX_PKG_NO_DEVELSPLIT=yes @@ -73,6 +72,8 @@ ac_cv_c_bigendian=no \ # These files are provided by texlive: TERMUX_PKG_RM_AFTER_INSTALL=" +bin/tlmgr +bin/man share/texlive/texmf-dist/texconfig/tcfmgr.map share/texlive/texmf-dist/texconfig/tcfmgr share/texlive/texmf-dist/web2c/mktex.opt @@ -125,26 +126,10 @@ termux_step_pre_configure() { CXXFLAGS+=" -std=c++11" } -termux_step_post_make_install () { - # Replace tlmgr link with a small wrapper that prevents common break on "tlmgr update --self" - mv $TL_BINDIR/tlmgr $TL_BINDIR/tlmgr.ln - echo "#!$TERMUX_PREFIX/bin/sh" > $TL_BINDIR/tlmgr - echo "termux-fix-shebang $TL_ROOT/texmf-dist/scripts/texlive/tlmgr.pl" >> $TL_BINDIR/tlmgr - echo "sed -E -i '"'s@`/bin/sh@`'$TERMUX_PREFIX"/bin/sh@g' ${TL_ROOT}/tlpkg/TeXLive/TLUtils.pm" >> $TL_BINDIR/tlmgr - echo 'tlmgr.ln "$@"' >> $TL_BINDIR/tlmgr - chmod 0744 $TL_BINDIR/tlmgr -} - termux_step_create_debscripts () { # Clean texlive's folder if needed (run on fresh install) 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 - # Let's not delete the previous texmf-dist so that people who have installed a full distribution won't need to download everything again - echo "shopt -s extglob" >> preinst # !(texmf-dist) is an extended glob which is turned off in scripts - echo "rm -rf $TERMUX_PREFIX/opt/texlive/2017/!(texmf-dist)" >> preinst - echo "shopt -u extglob" >> preinst # disable extglob again just in case + echo "if [ ! -d $PREFIX/opt/texlive ]; then echo 'Removing residual files from old version of TeX Live for Termux'; rm -rf $PREFIX/opt/texlive; fi" >> preinst echo "exit 0" >> preinst chmod 0755 preinst }