diff options
author | B. Watson <yalhcru@gmail.com> | 2021-10-20 05:20:32 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-29 17:07:19 +0700 |
commit | 02bdc9ca7c300e6b37b178d3828b0673bfabbb39 (patch) | |
tree | 2f4e25a94b7574e3234b11e94905b48eb64b87f8 /games/pangzero/pangzero.SlackBuild | |
parent | d1ac86c9d4583a888facf5bc062e8ffff9170ec9 (diff) |
games/pangzero: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/pangzero/pangzero.SlackBuild')
-rw-r--r-- | games/pangzero/pangzero.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/games/pangzero/pangzero.SlackBuild b/games/pangzero/pangzero.SlackBuild index 79339aaf0b292..54633656f6b05 100644 --- a/games/pangzero/pangzero.SlackBuild +++ b/games/pangzero/pangzero.SlackBuild @@ -12,6 +12,9 @@ # patches. Note that DEBREV specifies the Debian revision number (i.e. the # last component of the name of the .debian.tar.xz file). +# 20211020 bkw: there's a -5 debian rev now, but nothing new for us. +# it's just debian-specific bookkeeping changes. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=pangzero @@ -23,9 +26,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 @@ -46,11 +46,8 @@ cd $PRGNAM-$VERSION tar xvf $CWD/${PRGNAM}_$VERSION-$DEBREV.debian.tar.xz 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 {} \+ for i in $( cat debian/patches/series ); do patch -p1 < debian/patches/$i |