diff options
Diffstat (limited to 'office/texlive/texlive.SlackBuild')
-rw-r--r-- | office/texlive/texlive.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/office/texlive/texlive.SlackBuild b/office/texlive/texlive.SlackBuild index 4ca23293823f2..a29afb9ab1728 100644 --- a/office/texlive/texlive.SlackBuild +++ b/office/texlive/texlive.SlackBuild @@ -31,7 +31,7 @@ PRGNAM=texlive SOURCEVERSION=20190410 VERSION=${VERSION:-2019.190626} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -216,6 +216,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/ |