2017-01-19 04:21:42 +01:00
TERMUX_PKG_HOMEPAGE = https://www.tug.org/texlive/
TERMUX_PKG_DESCRIPTION = "TeX Live is a distribution of the TeX typesetting system."
2017-06-07 00:43:15 +02:00
TERMUX_PKG_MAINTAINER = "Henrik Grimler @Grimler91"
_MAJOR_VERSION = 20170524
_MINOR_VERSION =
2017-03-08 17:41:26 +01:00
TERMUX_PKG_VERSION = ${ _MAJOR_VERSION } ${ _MINOR_VERSION }
TERMUX_PKG_SRCURL = ftp://tug.org/historic/systems/texlive/${ TERMUX_PKG_VERSION : 0 : 4 } /texlive-${ TERMUX_PKG_VERSION } -source.tar.xz
2017-06-07 00:43:15 +02:00
TERMUX_PKG_SHA256 = "0161695304e941334dc0b3b5dabcf8edf46c09b7bc33eea8229b5ead7ccfb2aa"
TERMUX_PKG_DEPENDS = "freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl, xz-utils, wget, gnupg"
2017-03-08 17:41:26 +01:00
TERMUX_PKG_FOLDERNAME = texlive-${ _MAJOR_VERSION } -source
2017-06-07 00:43:15 +02:00
TL_ROOT = $TERMUX_PREFIX /opt/texlive/${ TERMUX_PKG_VERSION : 0 : 4 }
2017-01-28 16:39:37 +01:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS = "
2017-01-19 04:21:42 +01:00
AR = ar \
RANLIB = ranlib \
BUILDAR = ar \
BUILDRANLIB = ranlib \
2017-04-22 02:04:03 +02:00
ac_cv_c_bigendian = no \
2017-06-07 00:43:15 +02:00
--prefix= $TL_ROOT \
--bindir= $TL_ROOT /bin/pkg \
--datarootdir= $TL_ROOT \
--datadir= $TERMUX_PREFIX /share \
--mandir= $TERMUX_PREFIX /share/man \
--docdir= $TERMUX_PREFIX /share/doc \
--infodir= $TERMUX_PREFIX /share/info \
2017-03-08 17:41:26 +01:00
--libdir= $TERMUX_PREFIX /lib \
2017-06-07 00:43:15 +02:00
--includedir= $TERMUX_PREFIX /include \
2017-01-19 04:21:42 +01:00
--build= $TERMUX_BUILD_TUPLE \
2017-01-19 06:01:54 +01:00
--enable-ttfdump= no \
2017-06-07 00:43:15 +02:00
--enable-makeindexk= yes \
2017-01-19 06:01:54 +01:00
--enable-makejvf= no \
--enable-mendexk= no \
--enable-musixtnt= no \
--enable-ps2pk= no \
--enable-seetexk= no \
--enable-gregorio= no \
2017-01-19 04:21:42 +01:00
--disable-native-texlive-build \
2017-01-19 06:01:54 +01:00
--disable-bibtexu \
--disable-dvisvgm \
2017-01-19 04:21:42 +01:00
--disable-dialog \
--disable-psutils \
2017-01-19 06:01:54 +01:00
--disable-multiplatform \
2017-01-19 04:21:42 +01:00
--disable-t1utils \
2017-03-08 17:41:26 +01:00
--enable-luatex \
2017-01-19 06:01:54 +01:00
--disable-luajittex \
--disable-mflua \
--disable-mfluajit \
--disable-xz \
2017-03-08 17:41:26 +01:00
--disable-pmx \
2017-01-19 04:21:42 +01:00
--without-texinfo \
--without-xdvipdfmx \
--without-texi2html \
2017-01-19 06:01:54 +01:00
--with-system-cairo \
--with-system-graphite2 \
--with-system-harfbuzz \
--with-system-gd \
--with-system-gmp \
2017-01-19 04:21:42 +01:00
--with-system-icu \
2017-01-19 06:01:54 +01:00
--with-system-lua \
--with-system-mpfr \
2017-01-19 04:21:42 +01:00
--with-system-poppler \
2017-01-19 06:01:54 +01:00
--with-system-zlib \
2017-01-19 04:21:42 +01:00
--with-system-xpdf \
2017-03-08 17:41:26 +01:00
--with-system-lua \
2017-01-19 06:01:54 +01:00
--without-x \
--with-banner-add= /Termux"
2017-01-19 04:21:42 +01:00
2017-04-22 02:04:03 +02:00
termux_step_pre_configure( ) {
# When building against libicu 59.1 or later we need c++11:
CXXFLAGS += " -std=c++11"
2017-01-19 04:21:42 +01:00
}
termux_step_post_make_install ( ) {
2017-03-08 17:41:26 +01:00
cp $TERMUX_PKG_BUILDER_DIR /termux-install-tl.sh $TERMUX_PREFIX /bin/termux-install-tl
2017-06-07 00:43:15 +02:00
mkdir -p $TERMUX_PREFIX /etc/profile.d/
echo " export PATH=\$PATH: $TERMUX_PREFIX /opt/texlive/ ${ TERMUX_PKG_VERSION : 0 : 4 } /bin/custom/ " >> $TERMUX_PREFIX /etc/profile.d/texlive.sh
echo " export TMPDIR= $TERMUX_PREFIX /tmp/ " >> $TERMUX_PREFIX /etc/profile.d/texlive.sh
chmod 0744 $TERMUX_PREFIX /etc/profile.d/texlive.sh
2017-01-19 04:21:42 +01:00
}
termux_step_create_debscripts ( ) {
2017-03-08 17:41:26 +01:00
echo 'echo "========================================================"' > postinst
echo 'echo "retrieving texlive..."' >> postinst
echo 'echo "you can start this manually by calling termux-install-tl"' >> postinst
echo 'echo "========================================================"' >> postinst
2017-01-19 06:01:54 +01:00
echo "termux-install-tl" >> postinst
echo "exit 0" >> postinst
chmod 0755 postinst
2017-06-07 00:43:15 +02:00
# Clean texlive's folder if needed.
echo " if [ ! -f $TERMUX_PREFIX /opt/texlive/2016/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,opt/texlive} " >> preinst
echo "exit 0" >> preinst
chmod 0755 preinst
# Remove all files installed/downloaded through termux-install-tl
echo 'if [ $1 != "remove" ]; then exit 0; fi' > prerm
echo "echo Running texlinks --unlink" >> prerm
echo "texlinks --unlink" >> prerm
echo "echo Removing bin/custom and texmf-dist" >> prerm
echo " rm -rf $TL_ROOT /{bin/custom,texmf-dist} " >> prerm
echo "exit 0" >> prerm
chmod 0755 prerm
2017-01-19 04:21:42 +01:00
}