diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-22 16:44:55 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-23 20:10:25 +0700 |
commit | a2ebc69f81d5e2e0de516e78650e6d19d366d98e (patch) | |
tree | 726c9be46e82bae565a126c04aeda62b2babf203 /games | |
parent | ba328759f59d8fb55fdd67ad8168324107ec3973 (diff) |
games/gargoyle: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/gargoyle/gargoyle.SlackBuild | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/games/gargoyle/gargoyle.SlackBuild b/games/gargoyle/gargoyle.SlackBuild index d399272e6a6e..2d78598ec517 100644 --- a/games/gargoyle/gargoyle.SlackBuild +++ b/games/gargoyle/gargoyle.SlackBuild @@ -4,11 +4,17 @@ # Written by Dugan Chen (thedoogster@gmail.com) # Yth | Pont-en-Royans, France | yth@ythogtha.org +# 20220222 bkw: Modified by SlackBuilds.org, BUILD=3: +# - fix build on 15.0. +# - move executable to /usr/games. +# - correct paths in .desktop file. +# - do not install useless INSTALL in package. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gargoyle VERSION=${VERSION:-2019.1.1} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -23,9 +29,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 @@ -60,24 +63,24 @@ cd $SRCNAM-$SRCVER 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 \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ env -u BUILD \ jam -s DESTDIR=$PKG \ -s _BINDIR=/usr/libexec/gargoyle \ -s _APPDIR=/usr/libexec/gargoyle \ -s _LIBDIR=/usr/lib$LIBDIRSUFFIX/gargoyle \ - -s CCFLAGS="$SLKCFLAGS -fgnu89-inline -fpermissive" \ + -s CCFLAGS="$SLKCFLAGS -fcommon -fgnu89-inline -fpermissive" \ -dx \ install find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -mkdir -p $PKG/usr/bin -install -m755 $CWD/gargoyle.sh $PKG/usr/bin/gargoyle +mkdir -p $PKG/usr/games +install -m755 $CWD/gargoyle.sh $PKG/usr/games/gargoyle ln -s gargoyle/libgarglk.so $PKG/usr/lib${LIBDIRSUFFIX}/libgarglk.so @@ -88,10 +91,12 @@ mkdir -p $PKG/usr/share/pixmaps cp garglk/gargoyle-house.png $PKG/usr/share/pixmaps mkdir -p $PKG/usr/share/applications -cp garglk/gargoyle.desktop $PKG/usr/share/applications +sed -e "/^Icon/s,=,=/usr/share/pixmaps/," \ + -e "/^Exec/s,=,=/usr/games/," \ + < garglk/gargoyle.desktop \ + > $PKG/usr/share/applications/gargoyle.desktop mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a INSTALL $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |