diff options
Diffstat (limited to 'office/texlive-extra/texlive-extra.SlackBuild')
-rw-r--r-- | office/texlive-extra/texlive-extra.SlackBuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/office/texlive-extra/texlive-extra.SlackBuild b/office/texlive-extra/texlive-extra.SlackBuild index 499ad2e247..21ca3a7d8e 100644 --- a/office/texlive-extra/texlive-extra.SlackBuild +++ b/office/texlive-extra/texlive-extra.SlackBuild @@ -4,7 +4,7 @@ # Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA # Copyright 2009-2014 Robby Workman, Northport, AL, USA -# Copyright 2016 Johannes Schoepfer +# Copyright 2016-2017 Johannes Schoepfer, Germany # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=texlive-extra -VERSION=${VERSION:-2016.161031} +VERSION=${VERSION:-2017.170622} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -44,6 +44,13 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.xz -C $PKG/usr/share chown -R root:root $PKG chmod -R u+w,go-w,a+rX-st $PKG +# Move biber binary to $PATH +case $ARCH in + "x86_64") mv $PKG/usr/share/texmf-dist/bin/x86_64-linux/biber $PKG/usr/bin ;; + "i586") mv $PKG/usr/share/texmf-dist/bin/i386-linux/biber $PKG/usr/bin ;; +esac +rm -rf $PKG/usr/share/texmf-dist/bin + mkdir -p $PKG/install cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc |