diff options
Diffstat (limited to 'source/t/texlive/texlive.SlackBuild')
-rwxr-xr-x | source/t/texlive/texlive.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/t/texlive/texlive.SlackBuild b/source/t/texlive/texlive.SlackBuild index e08739e0..03c79d34 100755 --- a/source/t/texlive/texlive.SlackBuild +++ b/source/t/texlive/texlive.SlackBuild @@ -33,7 +33,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=texlive SOURCEVERSION=${SOURCEVERSION:-20190410} VERSION=${VERSION:-2019.190626} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TMP=${TMP:-/tmp} PKG=$TMP/package-texlive @@ -223,6 +223,12 @@ cat $CWD/README.tlpkg > $PKG/usr/doc/texlive-$VERSION/README.tlpkg # Create some directories to make it clear that they're owned by this package mkdir -p $PKG/usr/share/{texmf-config,texmf-var,texmf-local} +# Use patch for tabu.sty from https://github.com/tabu-fixed/tabu to fix +# breakage when compiling doxygen: +( cd $PKG/usr/share/texmf-dist/tex/latex/tabu + cat $CWD/patches/tabu.sty.diff | patch -p1 --verbose || exit 1 +) || exit 1 + # Add some perl modules, at least one of which is required by updmap mkdir -p $PKG/usr/share/perl5 mv texk/tests/TeXLive $PKG/usr/share/perl5/ |