diff options
author | B. Watson <yalhcru@gmail.com> | 2018-02-15 15:06:58 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-02-24 06:55:52 +0700 |
commit | 5ff4d6655414b98ea11cf6da9ea34fa57e25dee6 (patch) | |
tree | b5a4cb39245d64be9a040e7e73356fa1da19f1e0 /games/zennode | |
parent | f3a3f5301bd42c1fdcfe85773accf3c4b9e9e895 (diff) | |
download | slackbuilds-5ff4d6655414b98ea11cf6da9ea34fa57e25dee6.tar.gz |
games/zennode: Move binaries to /usr/games.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/zennode')
-rw-r--r-- | games/zennode/zennode.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/games/zennode/zennode.SlackBuild b/games/zennode/zennode.SlackBuild index 4cb59a5bbd..7935d957e4 100644 --- a/games/zennode/zennode.SlackBuild +++ b/games/zennode/zennode.SlackBuild @@ -6,9 +6,11 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20180215 bkw: BUILD=2, move binary to /usr/games + PRGNAM=zennode VERSION=${VERSION:-1.2.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -65,11 +67,11 @@ cd src/$ZIPNAME sed -i "s/-O\>/$SLKCFLAGS/" makefile make WARNINGS=-Wall - mkdir -p $PKG/usr/bin - install -s -m0755 $ZIPNAME $PKG/usr/bin/$PRGNAM - install -s -m0755 bspdiff bspinfo $PKG/usr/bin/ - install -s -m0755 compare $PKG/usr/bin/zn-compare - ln -s $PRGNAM $PKG/usr/bin/$ZIPNAME + mkdir -p $PKG/usr/games + install -s -m0755 $ZIPNAME $PKG/usr/games/$PRGNAM + install -s -m0755 bspdiff bspinfo $PKG/usr/games/ + install -s -m0755 compare $PKG/usr/games/zn-compare + ln -s $PRGNAM $PKG/usr/games/$ZIPNAME cd - # man page written for this SlackBuild |