diff options
author | Hunter Sezen <orbea@riseup.net> | 2019-04-25 23:43:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-04-25 23:43:07 +0700 |
commit | 7a97fa15648ae3f644721c2009c468f96f42ab37 (patch) | |
tree | 24f895f5fb8423d9170a2022063c89c8152c4c5c /development/apitrace/apitrace.SlackBuild | |
parent | 57d4fd2a23cd767e9a0111d7b87596341d940c3a (diff) | |
download | slackbuilds-7a97fa15648ae3f644721c2009c468f96f42ab37.tar.gz |
development/apitrace: Updated for version 8.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/apitrace/apitrace.SlackBuild')
-rw-r--r-- | development/apitrace/apitrace.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/development/apitrace/apitrace.SlackBuild b/development/apitrace/apitrace.SlackBuild index 95eb24f580..d5f42568ce 100644 --- a/development/apitrace/apitrace.SlackBuild +++ b/development/apitrace/apitrace.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for apitrace -# Copyright 2015-2017 Hunter Sezen California, USA +# Copyright 2015-2017, 2019 Hunter Sezen California, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=apitrace -VERSION=${VERSION:-2017.11.20_19c33cb} +VERSION=${VERSION:-8.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -60,7 +60,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ @@ -82,8 +82,8 @@ cd build make install DESTDIR=$PKG cd .. -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | + grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |