harfbuzz&texlive: Bump after libicu 59.1 update
[termux-packages] / packages / texlive / build.sh
index 46b9ecd..8b5cb75 100644 (file)
@@ -1,16 +1,24 @@
 TERMUX_PKG_HOMEPAGE=https://www.tug.org/texlive/
 TERMUX_PKG_DESCRIPTION="TeX Live is a distribution of the TeX typesetting system."
-TERMUX_PKG_VERSION=20160523
-TERMUX_PKG_SRCURL=ftp://tug.org/historic/systems/texlive/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}b-source.tar.xz
+_MAJOR_VERSION=20160523
+_MINOR_VERSION=b
+TERMUX_PKG_VERSION=${_MAJOR_VERSION}${_MINOR_VERSION}
+TERMUX_PKG_REVISION=1
+TERMUX_PKG_SRCURL=ftp://tug.org/historic/systems/texlive/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}-source.tar.xz
 TERMUX_PKG_SHA256="a8b32ca47f0a403661a09e202f4567a995beb718c18d8f81ca6d76daa1da21ed"
-TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler"
-TERMUX_PKG_FOLDERNAME=texlive-${TERMUX_PKG_VERSION}-source
-TERMUX_PKG_EXTRA_CONFIGURE_ARGS="\
+TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl, xz-utils"
+TERMUX_PKG_FOLDERNAME=texlive-${_MAJOR_VERSION}-source
+
+# change the bin directory to "$TERMUX_PREFIX/opt/texlive/2016/bin/pkg" because the installer will symlink this to the actual bin dir..
+TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
 AR=ar \
 RANLIB=ranlib \
 BUILDAR=ar \
 BUILDRANLIB=ranlib \
---prefix=$TERMUX_PREFIX \
+ac_cv_c_bigendian=no \
+--prefix=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4} \
+--bindir=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4}/bin/pkg \
+--libdir=$TERMUX_PREFIX/lib \
 --build=$TERMUX_BUILD_TUPLE \
 --enable-ttfdump=no \
 --enable-makeindexk=no \
@@ -27,11 +35,12 @@ BUILDRANLIB=ranlib \
 --disable-psutils \
 --disable-multiplatform \
 --disable-t1utils \
---disable-luatex \
+--enable-luatex \
 --disable-luajittex \
 --disable-mflua \
 --disable-mfluajit \
 --disable-xz \
+--disable-pmx \
 --without-texinfo \
 --without-xdvipdfmx \
 --without-texi2html \
@@ -46,19 +55,30 @@ BUILDRANLIB=ranlib \
 --with-system-poppler \
 --with-system-zlib \
 --with-system-xpdf \
+--with-system-lua \
 --without-x \
 --with-banner-add=/Termux"
 
 termux_step_post_extract_package () {
-       rm -r $TERMUX_PKG_SRCDIR/utils/pmx
+       rm -rdf $TERMUX_PKG_SRCDIR/libs/luajit
+}
+
+termux_step_pre_configure() {
+       # When building against libicu 59.1 or later we need c++11:
+       CXXFLAGS+=" -std=c++11"
 }
 
 termux_step_post_make_install () {
-       cp $TERMUX_PKG_BUILDER_DIR/termux-install-tl $TERMUX_PREFIX/bin
+       mkdir -p $TERMUX_PREFIX/share/man/man{1,5}/
+       mv $TERMUX_PREFIX/opt/texlive/2016/share/man/man{1,5}/* $TERMUX_PREFIX/share/man/man1/
+       cp $TERMUX_PKG_BUILDER_DIR/termux-install-tl.sh $TERMUX_PREFIX/bin/termux-install-tl
 }
 
 termux_step_create_debscripts () {
-       echo 'echo "retrieving texlive..."' > postinst
+        echo 'echo "========================================================"' > postinst
+       echo 'echo "retrieving texlive..."' >> postinst
+       echo 'echo "you can start this manually by calling termux-install-tl"' >> postinst
+        echo 'echo "========================================================"' >> postinst
        echo "termux-install-tl" >> postinst
        echo "exit 0" >> postinst
        chmod 0755 postinst