diff options
author | Johannes Schoepfer <slackbuilds@schoepfer.info> | 2022-04-29 09:10:20 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-30 13:51:54 +0700 |
commit | af50ca3ec1047a5b20ce69ef8b1a922869432456 (patch) | |
tree | d59ce5848600537a3ffbf5ec126fa52a316d5a84 /games/trigger-rally/trigger-rally.SlackBuild | |
parent | 25f965245f35829849f8ce508f8059e1f4ff384b (diff) |
games/trigger-rally: Updated for version 0.6.6.1. New maintainer.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/trigger-rally/trigger-rally.SlackBuild')
-rw-r--r-- | games/trigger-rally/trigger-rally.SlackBuild | 34 |
1 files changed, 10 insertions, 24 deletions
diff --git a/games/trigger-rally/trigger-rally.SlackBuild b/games/trigger-rally/trigger-rally.SlackBuild index adde6a0dd1360..8847d81223ff2 100644 --- a/games/trigger-rally/trigger-rally.SlackBuild +++ b/games/trigger-rally/trigger-rally.SlackBuild @@ -2,7 +2,8 @@ # Slackware build script for trigger-rally -# Copyright 2015-2016 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2015-2016 Larry Hajali +# Copyright 2022 Johannes Schoepfer, Germany # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,22 +26,19 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=trigger-rally -VERSION=${VERSION:-0.6.4} +VERSION=${VERSION:-0.6.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; 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 @@ -50,8 +48,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -72,7 +70,6 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION -for i in $CWD/*.zip;do cp $i data/plugins;done chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -80,17 +77,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Fix end-of-line encoding -for j in doc/*; do - sed -e 's/\r//' $i > ${i}.new - touch -r $i ${i}.new - mv ${i}.new $i -done - -# Fix for gcc >= 5.x -# https://sourceforge.net/p/trigger-rally/discussion/527953/thread/e1cde947/ -patch -p0 < $CWD/hiscore1.h.patch - OPTIMS="$SLKCFLAGS" \ make -C src @@ -104,14 +90,14 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr mkdir $PKG/usr/share/applications install -m 0644 $CWD/$PRGNAM.desktop $PKG/usr/share/applications +# Correct size 16x12 icon +convert -resize 16x16 $PKG/usr/share/games/$PRGNAM/icon/trigger-256.png \ + $PKG/usr/share/games/$PRGNAM/icon/trigger-16.png for i in 16 22 24 32 36 48 64 72 96 128 192 256; do mkdir -p $PKG/usr/share/icons/hicolor/${i}x${i}/apps - ln -s /usr/share/games/$PRGNAM/icon/trigger-${i}.png \ + ln -sr $PKG/usr/share/games/$PRGNAM/icon/trigger-${i}.png \ $PKG/usr/share/icons/hicolor/${i}x${i}/apps/$PRGNAM.png done -mkdir -p $PKG/usr/share/icons/hicolor/scalable/apps -ln -s /usr/share/games/$PRGNAM/icons/trigger-${i}-icons.svg \ - $PKG/usr/share/icons/hicolor/scalable/apps/$PRGNAM.svg cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |