diff options
author | B. Watson <urchlay@slackware.uk> | 2023-01-07 16:22:53 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-01-14 08:50:18 +0700 |
commit | 1c2455fbcd6caff61daf5518651cf7c1a6cc20a3 (patch) | |
tree | 9bcfc8c5185aa62d3bf89ea9b0a989a339c0a53a /games/nottetris2 | |
parent | 47d31b19e3276544a1893d93b7daddd3964fa75d (diff) |
games/nottetris2: Fix doc dir.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/nottetris2')
-rw-r--r-- | games/nottetris2/nottetris2.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/games/nottetris2/nottetris2.SlackBuild b/games/nottetris2/nottetris2.SlackBuild index c0c223a681b4..f761b01a8985 100644 --- a/games/nottetris2/nottetris2.SlackBuild +++ b/games/nottetris2/nottetris2.SlackBuild @@ -12,11 +12,13 @@ # VERSION is just the modification date of the .love file. +# 20230107 bkw: BUILD=2, include the SlackBuild in the doc dir. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=nottetris2 VERSION=${VERSION:-20110620} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -52,8 +54,10 @@ echo '#!/usr/bin/env love-0.7.2' > $PKG/usr/games/$PRGNAM cat "$PAYLOAD" >> $PKG/usr/games/$PRGNAM chmod 755 $PKG/usr/games/$PRGNAM -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -install -m0644 -oroot -groot "$README" $PKG/usr/doc/$PRGNAM-$VERSION +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +install -m0644 -oroot -groot "$README" $PKGDOC +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild # .desktop written for this build mkdir -p $PKG/usr/share/applications |