diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2019-01-18 08:32:39 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-01-18 23:39:53 +0700 |
commit | 4c1847b39a305082d9303799b1baaeb79116b4e1 (patch) | |
tree | cbcb4a92ab0e867de9154ea22fc66d66ece5b323 /system/nvme-cli/nvme-cli.SlackBuild | |
parent | 469fe71133dbc8136d5a4d378b9b9b098f17f39c (diff) |
system/nvme-cli: Updated for version 1.7.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/nvme-cli/nvme-cli.SlackBuild')
-rw-r--r-- | system/nvme-cli/nvme-cli.SlackBuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/system/nvme-cli/nvme-cli.SlackBuild b/system/nvme-cli/nvme-cli.SlackBuild index 83ec594189ff8..3c0f4e48a4ee6 100644 --- a/system/nvme-cli/nvme-cli.SlackBuild +++ b/system/nvme-cli/nvme-cli.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for nvme-cli -# Copyright 2017-2018, Alexander Verbovetsky, Moscow, Russia +# Copyright 2017-2019, Alexander Verbovetsky, Moscow, Russia # 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=nvme-cli -VERSION=${VERSION:-1.6} +VERSION=${VERSION:-1.7} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -41,13 +41,13 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" + SLKCFLAGS="-O2 -march=i586 -mtune=i686 -I." elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" + SLKCFLAGS="-O2 -march=i686 -mtune=i686 -I." elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" + SLKCFLAGS="-O2 -fPIC -I." else - SLKCFLAGS="-O2" + SLKCFLAGS="-O2 -I." fi set -e @@ -72,8 +72,9 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/etc/bash_completion.d -mv $PKG/usr/share/bash_completion.d/nvme $PKG/etc/bash_completion.d/nvme.new -rmdir $PKG/usr/share/bash_completion.d/ +mv $PKG/usr/share/bash-completion/completions/nvme $PKG/etc/bash_completion.d/nvme.new +rmdir $PKG/usr/share/bash-completion/completions/ +rmdir $PKG/usr/share/bash-completion/ mv $PKG/usr/share/man $PKG/usr/ rmdir --ignore-fail-on-non-empty $PKG/usr/share/ |