diff options
author | B. Watson <yalhcru@gmail.com> | 2021-10-05 14:29:30 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:52:34 +0700 |
commit | 9827985d83a628f21a1fb8899d3b9ffe0d0dd073 (patch) | |
tree | 9eca0c513e8908695a8546757319378a2e1c14db /games/cosmic_assault | |
parent | 6f53338c96c82272b47a16645bc628d26a31578d (diff) |
games/cosmic_assault: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/cosmic_assault')
-rw-r--r-- | games/cosmic_assault/cosmic_assault.SlackBuild | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/games/cosmic_assault/cosmic_assault.SlackBuild b/games/cosmic_assault/cosmic_assault.SlackBuild index 03964e2ab3181..a6782f51ce17a 100644 --- a/games/cosmic_assault/cosmic_assault.SlackBuild +++ b/games/cosmic_assault/cosmic_assault.SlackBuild @@ -16,9 +16,6 @@ PKGTYPE=${PKGTYPE:-tgz} ARCH=noarch -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -39,11 +36,8 @@ rm -rf $PRGNAM tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $PRGNAM chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ mkdir -p $PKG/usr/games $PKG/usr/share/games/$PRGNAM install -m0755 $PRGNAM.py $PKG/usr/share/games/$PRGNAM |