diff options
Diffstat (limited to 'games/etlegacy/etlegacy.SlackBuild')
-rw-r--r-- | games/etlegacy/etlegacy.SlackBuild | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/games/etlegacy/etlegacy.SlackBuild b/games/etlegacy/etlegacy.SlackBuild index 7fb448fb6da86..bb21ee871fefd 100644 --- a/games/etlegacy/etlegacy.SlackBuild +++ b/games/etlegacy/etlegacy.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Slackware build script for etlegacy -# Copyright 2013-2019 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy +# Copyright 2013-2022 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=etlegacy -VERSION=${VERSION:-2.76} +VERSION=${VERSION:-2.79.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -37,9 +37,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 @@ -65,7 +62,7 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; chmod +x etl etlded -rm *.sh +#rm *.sh # Install a script to open urls, and move two scripts to launch the client and # the dedicated server with/without omnibot support in the binaries folder @@ -77,13 +74,14 @@ install -m 0755 $CWD/files/etl_bot $PKG/usr/bin/etl_bot install -m 0755 $CWD/files/etlded_bot $PKG/usr/bin/etlded_bot # Install an icon and a desktop file -install -m 0644 -D $CWD/files/$PRGNAM.svg \ - $PKG/usr/share/pixmaps/$PRGNAM.svg -install -m 0644 -D $CWD/files/$PRGNAM.desktop \ - $PKG/usr/share/applications/$PRGNAM.desktop +mv $PKG/usr/share/etlegacy/icons $PKG/usr/share/icons +mv $PKG/usr/share/etlegacy/applications $PKG/usr/share/applications +#sed -i "s|Icon=etl|Icon=etl.svg|" $PKG/usr/share/applications/* + +mv $PKG/usr/share/etlegacy/man $PKG/usr/man +find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -mv $PKG/usr/share/$PRGNAM/*.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |