summaryrefslogtreecommitdiffstats
path: root/games/madbomber/madbomber.SlackBuild
diff options
context:
space:
mode:
author B. Watson2021-10-20 11:56:31 +0200
committer Willy Sudiarto Raharjo2021-10-29 12:07:20 +0200
commit60f218bc23569cb6f374426ec5ffb333aafcf6ad (patch)
tree8ee15a3a84db09fb4be5fa4055fdd91e633cc59f /games/madbomber/madbomber.SlackBuild
parent02bdc9ca7c300e6b37b178d3828b0673bfabbb39 (diff)
downloadslackbuilds-60f218bc23569cb6f374426ec5ffb333aafcf6ad.tar.gz
games/madbomber: New-style icons.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/madbomber/madbomber.SlackBuild')
-rw-r--r--games/madbomber/madbomber.SlackBuild26
1 files changed, 17 insertions, 9 deletions
diff --git a/games/madbomber/madbomber.SlackBuild b/games/madbomber/madbomber.SlackBuild
index 67a3f1d269..09bbfc84b5 100644
--- a/games/madbomber/madbomber.SlackBuild
+++ b/games/madbomber/madbomber.SlackBuild
@@ -7,11 +7,13 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20211020 bkw: BUILD=3, new-style icons.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=madbomber
VERSION=${VERSION:-0.2.5}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -23,9 +25,6 @@ if [ -z "$ARCH" ]; then
esac
fi
-# 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
@@ -58,11 +57,8 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
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 {} \+
sed -i -e "s/-Wall/-Wall $SLKCFLAGS/" Makefile
@@ -79,6 +75,18 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
+# upstream only provides a 40x40 icon, resize...
+for i in 16 32 48 64; do
+ px=$( basename $i | cut -d. -f1 )
+ size=${px}x${px}
+ dir=$PKG/usr/share/icons/hicolor/$size/apps
+ mkdir -p $dir
+ convert -resize $size data/images/icon.png $dir/$PRGNAM.png
+done
+
+mkdir -p $PKG/usr/share/pixmaps
+cat data/images/icon.png > $PKG/usr/share/pixmaps/$PRGNAM.png
+
mkdir -p $PKG/usr/man/man6
gzip -9c $CWD/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz