Properly package texlive and split package into texlive & texlive-bin (#1203)
* texlive: enable makeindex and put man files and headers in proper location. * texlive: upgrade to 2017 * texlive: split into texlive-bin and arch independent texlive-base. Download texmf-dist and other tarballs and package necessary files instead of using tlnet installer on device. * texlive-base: extract only a minimal set of files from texmf-dist, do complete uninstall on removal. Patch some files. The texmf-dist tar is quite large so use --checkpoint to indicate progress. * texlive: use gnupg2 instead of gnupg * texlive: fix texlive profile * texlive: added TL_BINDIR variable to simplify build scripts * texlive: replace tlmgr symlink with small wrapper. After `tlmgr update --self` has been run, the shebang of tlmgr.pl is none-working and there is a reference to /bin/sh in TLUtils.pm. This wrapper fixes this (if needed) before tlmgr is run. * texlive: update command-not-found with a few common texlive commands. * remove un-needed minimal.list * Format generation working. xelatex activated. Remove all texmf-dist files created by texlive-bin package. * texlive: fix installation and removal of texlive-{bin,base}. All essential fixes done. Only thing remaining to fix is figuring out how to deal with the transition texlive -> texlive-{bin,base}. * texlive: use Breaks instead of Conflicts * texlive: properly fix split into two packages [WIP] * delete old termux-install-tl.sh * texlive: Fix so that the upgrade from texlive 20170524-2 goes smoothly and works as it should (with Breaks and Replaces). Also major clean up of texlive/build.sh. * texlive: minor clean up of texlive/build.sh. Update patches to avoid (silent) complaints from patching. Add previously forgotten install-tl.list with list of files to take from install-tl-unx.tar.gz. * texlive: make texlive-bin-dev properly replace texlive-dev. Everything is done now, just need to wait for breaks and subpkg_replaces before opening a pull request. * texlive: skip format generation on install, rm old files in texlive-bin as well. Also decrease verbosity of installation * texlive: when deleting old files, leave texmf-dist alone * texlive: fix typo, correctly remove files from old texlive version
This commit is contained in:
parent
bc0f371c30
commit
ce1c64ca2d
@ -1838,7 +1838,13 @@ char const* const commands[] = {
|
||||
" texi2pdf",
|
||||
" texindex",
|
||||
"texlive",
|
||||
" termux-install-tl",
|
||||
" bibtex",
|
||||
" lualatex",
|
||||
" makeindex",
|
||||
" pdflatex",
|
||||
" texliveonfly",
|
||||
" tlmgr",
|
||||
" xelatex",
|
||||
"tig",
|
||||
" tig",
|
||||
"timewarrior",
|
||||
|
102
packages/texlive-bin/build.sh
Normal file
102
packages/texlive-bin/build.sh
Normal file
@ -0,0 +1,102 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://www.tug.org/texlive/
|
||||
TERMUX_PKG_DESCRIPTION="TeX Live is a distribution of the TeX typesetting system."
|
||||
TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
|
||||
_MAJOR_VERSION=20170524
|
||||
_MINOR_VERSION=
|
||||
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
|
||||
TERMUX_PKG_SHA256="0161695304e941334dc0b3b5dabcf8edf46c09b7bc33eea8229b5ead7ccfb2aa"
|
||||
TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl"
|
||||
TERMUX_PKG_FOLDERNAME=texlive-${_MAJOR_VERSION}-source
|
||||
TERMUX_PKG_BREAKS="texlive (<< 20170524-3)"
|
||||
TERMUX_PKG_REPLACES="texlive (<< 20170524-3)"
|
||||
TERMUX_PKG_NO_DEVELSPLIT=yes
|
||||
|
||||
TL_ROOT=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4}
|
||||
TL_BINDIR=$TL_ROOT/bin/custom
|
||||
|
||||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
||||
AR=ar \
|
||||
RANLIB=ranlib \
|
||||
BUILDAR=ar \
|
||||
BUILDRANLIB=ranlib \
|
||||
ac_cv_c_bigendian=no \
|
||||
--prefix=$TL_ROOT \
|
||||
--bindir=$TL_BINDIR \
|
||||
--datarootdir=$TL_ROOT \
|
||||
--datadir=$TERMUX_PREFIX/share \
|
||||
--mandir=$TERMUX_PREFIX/share/man \
|
||||
--docdir=$TERMUX_PREFIX/share/doc \
|
||||
--infodir=$TERMUX_PREFIX/share/info \
|
||||
--libdir=$TERMUX_PREFIX/lib \
|
||||
--includedir=$TERMUX_PREFIX/include \
|
||||
--build=$TERMUX_BUILD_TUPLE \
|
||||
--enable-ttfdump=no \
|
||||
--enable-makeindexk=yes \
|
||||
--enable-makejvf=no \
|
||||
--enable-mendexk=no \
|
||||
--enable-musixtnt=no \
|
||||
--enable-ps2pk=no \
|
||||
--enable-seetexk=no \
|
||||
--enable-gregorio=no \
|
||||
--disable-native-texlive-build \
|
||||
--disable-bibtexu \
|
||||
--disable-dvisvgm \
|
||||
--disable-dialog \
|
||||
--disable-psutils \
|
||||
--disable-multiplatform \
|
||||
--disable-t1utils \
|
||||
--enable-luatex \
|
||||
--disable-luajittex \
|
||||
--disable-mflua \
|
||||
--disable-mfluajit \
|
||||
--disable-xz \
|
||||
--disable-pmx \
|
||||
--without-texinfo \
|
||||
--without-xdvipdfmx \
|
||||
--without-texi2html \
|
||||
--with-system-cairo \
|
||||
--with-system-graphite2 \
|
||||
--with-system-harfbuzz \
|
||||
--with-system-gd \
|
||||
--with-system-gmp \
|
||||
--with-system-icu \
|
||||
--with-system-lua \
|
||||
--with-system-mpfr \
|
||||
--with-system-poppler \
|
||||
--with-system-zlib \
|
||||
--with-system-xpdf \
|
||||
--with-system-lua \
|
||||
--without-x \
|
||||
--with-banner-add=/Termux"
|
||||
|
||||
TERMUX_PKG_RM_AFTER_INSTALL="opt/texlive/${TERMUX_PKG_VERSION:0:4}/texmf-dist"
|
||||
|
||||
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 () {
|
||||
mkdir -p $TERMUX_PREFIX/etc/profile.d/
|
||||
echo "export PATH=\$PATH:$TL_BINDIR" > $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
|
||||
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 "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"
|
||||
# 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 "rm -rf $TERMUX_PREFIX/opt/texlive/2017/!(texmf-dist)" >> preinst
|
||||
echo "exit 0" >> preinst
|
||||
chmod 0755 preinst
|
||||
}
|
5
packages/texlive-bin/texlive-bin-dev.subpackage.sh
Normal file
5
packages/texlive-bin/texlive-bin-dev.subpackage.sh
Normal file
@ -0,0 +1,5 @@
|
||||
TERMUX_SUBPKG_INCLUDE="include lib/pkgconfig"
|
||||
TERMUX_SUBPKG_DESCRIPTION="Development files for texlive"
|
||||
TERMUX_SUBPKG_DEPENDS="texlive-bin"
|
||||
TERMUX_SUBPKG_REPLACES="texlive-dev"
|
||||
TERMUX_SUBPKG_CONFLICTS="texlive-dev"
|
19
packages/texlive/TLConfig.pm.patch
Normal file
19
packages/texlive/TLConfig.pm.patch
Normal file
@ -0,0 +1,19 @@
|
||||
--- src/texlive-20170524-extra/tlpkg/TeXLive/TLConfig.pm 2016-04-21 19:08:52.000000000 +0000
|
||||
+++ ../TLConfig.pm 2017-05-30 13:18:48.030712610 +0000
|
||||
@@ -165,13 +165,13 @@
|
||||
[ "b", 1, "postcode",
|
||||
"Run postinst code blobs" ],
|
||||
"sys_bin" =>
|
||||
- [ "p", "/usr/local/bin", "sys_bin",
|
||||
+ [ "p", "@TERMUX_PREFIX@/bin", "sys_bin",
|
||||
"Destination for symlinks for binaries" ],
|
||||
"sys_info" =>
|
||||
- [ "p", "/usr/local/share/info", "sys_info",
|
||||
+ [ "p", "@TERMUX_PREFIX@/share/info", "sys_info",
|
||||
"Destination for symlinks for info docs" ],
|
||||
"sys_man" =>
|
||||
- [ "p", "/usr/local/share/man", "sys_man",
|
||||
+ [ "p", "@TERMUX_PREFIX@/share/man", "sys_man",
|
||||
"Destination for symlinks for man pages" ],
|
||||
"w32_multi_user" =>
|
||||
[ "b", 1, "multiuser",
|
11
packages/texlive/TLUtils.pm.patch
Normal file
11
packages/texlive/TLUtils.pm.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/texlive-20170524-extra/tlpkg/TeXLive/TLUtils.pm 2016-05-16 00:33:33.000000000 +0000
|
||||
+++ ../TLUtils.pm 2017-05-30 14:09:38.505466432 +0000
|
||||
@@ -228,7 +228,7 @@
|
||||
# We cannot rely on #! in config.guess but have to call /bin/sh
|
||||
# explicitly because sometimes the 'noexec' flag is set in
|
||||
# /etc/fstab for ISO9660 file systems.
|
||||
- chomp (my $guessed_platform = `/bin/sh '$config_guess'`);
|
||||
+ chomp (my $guessed_platform = `@TERMUX_PREFIX@/bin/sh '$config_guess'`);
|
||||
|
||||
# For example, if the disc or reader has hardware problems.
|
||||
die "$0: could not run $config_guess, cannot proceed, sorry"
|
@ -4,103 +4,94 @@ TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
|
||||
_MAJOR_VERSION=20170524
|
||||
_MINOR_VERSION=
|
||||
TERMUX_PKG_VERSION=${_MAJOR_VERSION}${_MINOR_VERSION}
|
||||
TERMUX_PKG_REVISION=2
|
||||
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_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl, xz-utils, wget, gnupg"
|
||||
TERMUX_PKG_FOLDERNAME=texlive-${_MAJOR_VERSION}-source
|
||||
TERMUX_PKG_REVISION=3
|
||||
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",\
|
||||
"install-tl-unx.tar.gz"})
|
||||
TERMUX_PKG_SHA256=("3f63708b77f8615ec6f2f7c93259c5f584d1b89dd335a28f2362aef9e6f0c9ec"
|
||||
"afe49758c26fb51c2fae2e958d3f0c447b5cc22342ba4a4278119d39f5176d7f"
|
||||
"d4e07ed15dace1ea7fabe6d225ca45ba51f1cb7783e17850bc9fe3b890239d6d")
|
||||
TERMUX_PKG_DEPENDS="wget, perl, xz-utils, gnupg2, texlive-bin (>= 20170524)"
|
||||
TERMUX_PKG_FOLDERNAME=("texlive-$_MAJOR_VERSION-texmf"
|
||||
"texlive-$_MAJOR_VERSION-extra"
|
||||
"install-tl-$_MAJOR_VERSION")
|
||||
TL_FILE_LISTS=("texlive-texmf.list"
|
||||
"texlive-extra.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
|
||||
|
||||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
||||
AR=ar \
|
||||
RANLIB=ranlib \
|
||||
BUILDAR=ar \
|
||||
BUILDRANLIB=ranlib \
|
||||
ac_cv_c_bigendian=no \
|
||||
--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 \
|
||||
--libdir=$TERMUX_PREFIX/lib \
|
||||
--includedir=$TERMUX_PREFIX/include \
|
||||
--build=$TERMUX_BUILD_TUPLE \
|
||||
--enable-ttfdump=no \
|
||||
--enable-makeindexk=yes \
|
||||
--enable-makejvf=no \
|
||||
--enable-mendexk=no \
|
||||
--enable-musixtnt=no \
|
||||
--enable-ps2pk=no \
|
||||
--enable-seetexk=no \
|
||||
--enable-gregorio=no \
|
||||
--disable-native-texlive-build \
|
||||
--disable-bibtexu \
|
||||
--disable-dvisvgm \
|
||||
--disable-dialog \
|
||||
--disable-psutils \
|
||||
--disable-multiplatform \
|
||||
--disable-t1utils \
|
||||
--enable-luatex \
|
||||
--disable-luajittex \
|
||||
--disable-mflua \
|
||||
--disable-mfluajit \
|
||||
--disable-xz \
|
||||
--disable-pmx \
|
||||
--without-texinfo \
|
||||
--without-xdvipdfmx \
|
||||
--without-texi2html \
|
||||
--with-system-cairo \
|
||||
--with-system-graphite2 \
|
||||
--with-system-harfbuzz \
|
||||
--with-system-gd \
|
||||
--with-system-gmp \
|
||||
--with-system-icu \
|
||||
--with-system-lua \
|
||||
--with-system-mpfr \
|
||||
--with-system-poppler \
|
||||
--with-system-zlib \
|
||||
--with-system-xpdf \
|
||||
--with-system-lua \
|
||||
--without-x \
|
||||
--with-banner-add=/Termux"
|
||||
|
||||
termux_step_pre_configure() {
|
||||
# When building against libicu 59.1 or later we need c++11:
|
||||
CXXFLAGS+=" -std=c++11"
|
||||
termux_step_extract_package() {
|
||||
mkdir -p "$TERMUX_PKG_SRCDIR"
|
||||
|
||||
cd "$TERMUX_PKG_TMPDIR"
|
||||
for index in $(seq 0 2); do
|
||||
local filename
|
||||
filename=$(basename "${TERMUX_PKG_SRCURL[$index]}")
|
||||
local file="$TERMUX_PKG_CACHEDIR/$filename"
|
||||
termux_download "${TERMUX_PKG_SRCURL[$index]}" "$file" "${TERMUX_PKG_SHA256[$index]}"
|
||||
|
||||
folder=${TERMUX_PKG_FOLDERNAME[$index]}
|
||||
|
||||
rm -Rf $folder
|
||||
echo "Extracting files listed in ${TL_FILE_LISTS[$index]} from $folder"
|
||||
tar xf "$file" $(paste -d'\0' <(for i in $(seq 1 $( wc -l < $TERMUX_PKG_BUILDER_DIR/${TL_FILE_LISTS[$index]} )); do echo ${TERMUX_PKG_FOLDERNAME[$index]}/; done ) $TERMUX_PKG_BUILDER_DIR/${TL_FILE_LISTS[$index]} )
|
||||
done
|
||||
cp -r ${TERMUX_PKG_FOLDERNAME[@]} "$TERMUX_PKG_SRCDIR"
|
||||
}
|
||||
|
||||
termux_step_post_make_install () {
|
||||
cp $TERMUX_PKG_BUILDER_DIR/termux-install-tl.sh $TERMUX_PREFIX/bin/termux-install-tl
|
||||
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
|
||||
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 () {
|
||||
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
|
||||
|
||||
# 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
|
||||
# Clean texlive's folder if needed (run on upgrade)
|
||||
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 "rm -rf $TERMUX_PREFIX/opt/texlive/2017/!(texmf-dist)" >> preinst
|
||||
echo "exit 0" >> preinst
|
||||
chmod 0755 preinst
|
||||
|
||||
# Remove all files installed/downloaded through termux-install-tl
|
||||
echo "mkdir -p $TL_ROOT/{tlpkg/{backups,tlpobj},texmf-var/{web2c,tex/generic/config}}" > postinst
|
||||
echo "export PATH=\$PATH:$TL_BINDIR" >> postinst
|
||||
echo "echo Updating tlmgr" >> postinst
|
||||
echo "tlmgr update --self" >> postinst
|
||||
echo "echo Generating language files and setting up symlinks" >> postinst
|
||||
echo "tlmgr -q generate language" >> postinst
|
||||
echo "mktexlsr $TL_ROOT/texmf-var" >> postinst
|
||||
echo "texlinks" >> postinst
|
||||
echo "echo ''" >> postinst
|
||||
echo "echo Welcome to TeX Live!" >> postinst
|
||||
echo "echo ''" >> postinst
|
||||
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 '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 bin/custom and texmf-dist" >> prerm
|
||||
echo "rm -rf $TL_ROOT/{bin/custom,texmf-dist}" >> prerm
|
||||
echo "echo Removing texmf-dist" >> prerm
|
||||
echo "rm -rf $TL_ROOT/texmf-dist" >> prerm
|
||||
echo "echo Removing texmf-var and tlpkg" >> prerm
|
||||
echo "rm -rf $TL_ROOT/{texmf-var,tlpkg/{texlive.tlpdb.*,tlpobj,backups}}" >> prerm
|
||||
echo "exit 0" >> prerm
|
||||
chmod 0755 prerm
|
||||
}
|
||||
|
12
packages/texlive/fmtutil.cnf.patch
Normal file
12
packages/texlive/fmtutil.cnf.patch
Normal file
@ -0,0 +1,12 @@
|
||||
We've disabled luajittex when building the binaries, so lets prevent texlive from trying to generate formats for it.
|
||||
--- src/texlive-20170524-texmf/texmf-dist/web2c/fmtutil.cnf 2016-05-15 01:17:09.000000000 +0000
|
||||
+++ ../fmtutil.cnf 2017-05-31 05:20:32.516130878 +0000
|
||||
@@ -82,7 +82,7 @@
|
||||
# from luatex:
|
||||
luatex luatex language.def,language.dat.lua luatex.ini
|
||||
dviluatex luatex language.def,language.dat.lua dviluatex.ini
|
||||
-luajittex luajittex language.def,language.dat.lua luatex.ini
|
||||
+#! luajittex luajittex language.def,language.dat.lua luatex.ini
|
||||
#
|
||||
# from metafont:
|
||||
mf mf-nowin - -translate-file=cp227.tcx mf.ini
|
5
packages/texlive/install-tl.list
Normal file
5
packages/texlive/install-tl.list
Normal file
@ -0,0 +1,5 @@
|
||||
tlpkg/installer/config.guess
|
||||
tlpkg/gpg/pubring.gpg
|
||||
tlpkg/gpg/random_seed
|
||||
tlpkg/gpg/secring.gpg
|
||||
tlpkg/gpg/trustdb.gpg
|
@ -1,65 +0,0 @@
|
||||
|
||||
TL_VERSION=2017
|
||||
TL_ROOT=$PREFIX/opt/texlive
|
||||
|
||||
export TMPDIR=$PREFIX/tmp/
|
||||
mkdir -p $TMPDIR/termux-tl-installer
|
||||
cd $TMPDIR/termux-tl-installer
|
||||
|
||||
wget ftp://ftp.tug.org/texlive/historic/$TL_VERSION/install-tl-unx.tar.gz -O install-tl-unx.tar.gz
|
||||
tar xzfv install-tl-unx.tar.gz > flist
|
||||
|
||||
cd $(head -1 flist)
|
||||
|
||||
#patch install-tl
|
||||
sed -E -i "s@\`/bin/sh@\`$PREFIX/bin/sh@g" tlpkg/TeXLive/TLUtils.pm
|
||||
|
||||
cat > texlive_inst.profile << XXHEREXX
|
||||
selected_scheme scheme-basic
|
||||
TEXDIR $TL_ROOT/$TL_VERSION
|
||||
TEXMFCONFIG ~/.texlive$TL_VERSION/texmf-config
|
||||
TEXMFHOME ~/texmf
|
||||
TEXMFLOCAL $TL_ROOT/texmf-local
|
||||
TEXMFSYSCONFIG $TL_ROOT/$TL_VERSION/texmf-config
|
||||
TEXMFSYSVAR $TL_ROOT/$TL_VERSION/texmf-var
|
||||
TEXMFVAR ~/.texlive$TL_VERSION/texmf-var
|
||||
collection-basic 1
|
||||
collection-latex 1
|
||||
collection-luatex 1
|
||||
instopt_adjustpath 0
|
||||
instopt_adjustrepo 1
|
||||
instopt_letter 0
|
||||
instopt_portable 0
|
||||
instopt_write18_restricted 1
|
||||
tlpdbopt_autobackup 1
|
||||
tlpdbopt_backupdir tlpkg/backups
|
||||
tlpdbopt_create_formats 1
|
||||
tlpdbopt_desktop_integration 0
|
||||
tlpdbopt_file_assocs 0
|
||||
tlpdbopt_generate_updmap 0
|
||||
tlpdbopt_install_docfiles 0
|
||||
tlpdbopt_install_srcfiles 0
|
||||
tlpdbopt_post_code 1
|
||||
tlpdbopt_sys_bin $PREFIX/bin
|
||||
tlpdbopt_sys_info $PREFIX/share/info
|
||||
tlpdbopt_sys_man $PREFIX/share/man
|
||||
tlpdbopt_w32_multi_user 0
|
||||
XXHEREXX
|
||||
|
||||
#start installer with a profile and premade binaries
|
||||
perl ./install-tl --custom-bin=$TL_ROOT/${TL_VERSION}/bin/pkg --profile texlive_inst.profile
|
||||
|
||||
#fix tlpkg
|
||||
sed -E -i "s@\`/bin/sh@\`$PREFIX/bin/sh@g" ${TL_ROOT}/${TL_VERSION}/tlpkg/TeXLive/TLUtils.pm
|
||||
|
||||
#fix shebangs
|
||||
sed -i -E "1 s@^#\!(.*)/[sx]?bin/(.*)@#\!$PREFIX/bin/\2@" ${TL_ROOT}/${TL_VERSION}/texmf-dist/web2c/*
|
||||
sed -i -E "1 s@^#\!(.*)/[sx]?bin/(.*)@#\!$PREFIX/bin/\2@" ${TL_ROOT}/${TL_VERSION}/bin/custom/*
|
||||
|
||||
#source the environment
|
||||
. $PREFIX/etc/profile.d/texlive.sh
|
||||
|
||||
#setup links
|
||||
texlinks
|
||||
|
||||
rm -rf $TMPDIR/termux-tl-installer
|
36
packages/texlive/texlive-extra.list
Normal file
36
packages/texlive/texlive-extra.list
Normal file
@ -0,0 +1,36 @@
|
||||
tlpkg/tlpostcode/dvipdfmx.pl
|
||||
tlpkg/translations/cs.po
|
||||
tlpkg/translations/de.po
|
||||
tlpkg/translations/es.po
|
||||
tlpkg/translations/fr.po
|
||||
tlpkg/translations/it.po
|
||||
tlpkg/translations/ja.po
|
||||
tlpkg/translations/messages.pot
|
||||
tlpkg/translations/nl.po
|
||||
tlpkg/translations/pl.po
|
||||
tlpkg/translations/pt_BR.po
|
||||
tlpkg/translations/ru.po
|
||||
tlpkg/translations/sk.po
|
||||
tlpkg/translations/sl.po
|
||||
tlpkg/translations/sr.po
|
||||
tlpkg/translations/translators
|
||||
tlpkg/translations/uk.po
|
||||
tlpkg/translations/vi.po
|
||||
tlpkg/translations/zh_CN.po
|
||||
tlpkg/translations/zh_TW.po
|
||||
LICENSE.CTAN
|
||||
LICENSE.TL
|
||||
release-texlive.txt
|
||||
tlpkg/TeXLive/TLConfFile.pm
|
||||
tlpkg/TeXLive/TLConfig.pm
|
||||
tlpkg/TeXLive/TLCrypto.pm
|
||||
tlpkg/TeXLive/TLDownload.pm
|
||||
tlpkg/TeXLive/TLPDB.pm
|
||||
tlpkg/TeXLive/TLPOBJ.pm
|
||||
tlpkg/TeXLive/TLPSRC.pm
|
||||
tlpkg/TeXLive/TLPaper.pm
|
||||
tlpkg/TeXLive/TLTREE.pm
|
||||
tlpkg/TeXLive/TLUtils.pm
|
||||
tlpkg/TeXLive/TLWinGoo.pm
|
||||
tlpkg/TeXLive/TeXCatalogue.pm
|
||||
tlpkg/TeXLive/trans.pl
|
2398
packages/texlive/texlive-texmf.list
Normal file
2398
packages/texlive/texlive-texmf.list
Normal file
File diff suppressed because it is too large
Load Diff
4959
packages/texlive/texlive.tlpdb
Normal file
4959
packages/texlive/texlive.tlpdb
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user