diff options
author | Johannes Schoepfer <slackbuilds[at]schoepfer[dot]info> | 2017-11-15 08:45:36 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-11-18 12:40:26 +0700 |
commit | 63dd2549911f0db4b12bbf86e2e9eef27d8813c5 (patch) | |
tree | 001d9a85c2aa45d445afa00f5f67aed67a2ebca2 /office/texlive-extra/texlive-extra.SlackBuild | |
parent | a85f7034c891304ca58fb95920e6a3f50ecb15d2 (diff) |
office/texlive-extra: Updated for version 2017.171108.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/texlive-extra/texlive-extra.SlackBuild')
-rw-r--r-- | office/texlive-extra/texlive-extra.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/office/texlive-extra/texlive-extra.SlackBuild b/office/texlive-extra/texlive-extra.SlackBuild index c5d2a1e55899..81c72d7bd21a 100644 --- a/office/texlive-extra/texlive-extra.SlackBuild +++ b/office/texlive-extra/texlive-extra.SlackBuild @@ -25,8 +25,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=texlive-extra -VERSION=${VERSION:-2017.170622} -BUILD=${BUILD:-2} +VERSION=${VERSION:-2017.171108} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -34,8 +34,6 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -set -e - if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; @@ -44,20 +42,24 @@ if [ -z "$ARCH" ]; then esac fi +set -e + rm -rf $PKG -mkdir -p $TMP $PKG/usr/share $OUTPUT +mkdir -p $TMP $PKG/usr/share $OUTPUT $PKG/usr/bin $PKG/usr/doc/texlive-$VERSION 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 -mkdir -p $PKG/usr/bin 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 +# Install index of provided tex packages to the docs +mv $PKG/usr/share/texmf-dist/packages.extra.gz $PKG/usr/doc/texlive-$VERSION + mkdir -p $PKG/install cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc |