games/openlierox: Updated for version 20200424_d316c14.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2022-03-01 05:08:17 -05:00 committed by Willy Sudiarto Raharjo
parent 5e4a18289f
commit a84a2399d7
No known key found for this signature in database
GPG key ID: 3F617144D7238786
4 changed files with 100 additions and 21 deletions

View file

@ -1,3 +1,9 @@
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
fi
fi

View file

@ -0,0 +1,52 @@
#!/bin/sh
# Create source tarball from git repo, with generated version
# number.
# Note that this script doesn't need to be run as root. It does
# need to be able to write to the current directory it's run from.
# Takes one optional argument, which is the commit or tag to create
# a tarball of. With no arg, HEAD is used.
# If you're using this as a template for another script, beware it
# has openlierox-specific code! A bunch of windows/osx/ios specific
# directories get deleted.
PRGNAM=openlierox
CLONE_URL=https://github.com/albertz/openlierox
set -e
GITDIR=$( mktemp -dt $PRGNAM.git.XXXXXX )
rm -rf $GITDIR
git clone --depth 1 $CLONE_URL $GITDIR
CWD="$( pwd )"
cd $GITDIR
if [ "$1" != "" ]; then
git reset --hard "$1" || exit 1
fi
GIT_SHA=$( git rev-parse --short HEAD )
DATE=$( git log --date=format:%Y%m%d --format=%cd | head -1 )
VERSION=${DATE}_${GIT_SHA}
rm -rf .git
find . -name .gitignore -print0 | xargs -0 rm -f
# 20220301 bkw: remove the stuff we don't need.
rm -rf build libs/breakpad/src/*/{windows,mac,ios} tools/*/build \
tools/OLXDedServerWindowsService
cd "$CWD"
rm -rf $PRGNAM-$VERSION $PRGNAM-$VERSION.tar.xz
mv $GITDIR $PRGNAM-$VERSION
tar cvfJ $PRGNAM-$VERSION.tar.xz $PRGNAM-$VERSION
echo
echo "Created tarball: $PRGNAM-$VERSION.tar.xz"
echo "VERSION=$VERSION"

View file

@ -22,10 +22,18 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# 20220222 bkw: Modified by SlackBuilds.org:
# - update for v20200424_d316c14a8 (old version won't build on 15.0).
# - new-style icons.
# - binary in /usr/games.
# - put man page in right place (/usr/man/man6).
# - remove HawkNL dependency: it's bundled in the source and built
# statically by default. freealut really is required though.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=openlierox
VERSION=${VERSION:-20170313_3825306}
VERSION=${VERSION:-20200424_d316c14}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -38,9 +46,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
@ -70,42 +75,58 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.?z
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
cd $PRGNAM-$VERSION
rm -f ./libs/breakpad/autotools/compile # broken symlink
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 \
-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 {} \;
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
# 20220301 bkw: disable BFD. it breaks the build, and it's only used
# for backtraces if the game crashes.
mkdir -p build
cd build
cmake . \
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBREAKPAD=off \
-DBREAKPAD=OFF \
-DHASBFD=OFF \
-DCMAKE_BUILD_TYPE=Release ..
make
make VERBOSE=1
cd ..
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 \
mkdir -p $PKG/usr/games \
$PKG/usr/share/games/OpenLieroX
cp -rf share/gamedir/* $PKG/usr/share/games/OpenLieroX
install -D -m0755 build/bin/openlierox $PKG/usr/bin/openlierox
install -D -s -m0755 build/bin/openlierox $PKG/usr/games/openlierox
mkdir -p $PKG/usr/share/applications
install -D -m644 share/$PRGNAM-$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM-$PRGNAM.desktop
sed -e '/Exec=/s,=,=/usr/games/,' \
-e "/^Icon=/s,=.*,=$PRGNAM," \
< share/$PRGNAM-$PRGNAM.desktop \
> $PKG/usr/share/applications/$PRGNAM.desktop
for i in share/*.png; do
px="$( echo $i | cut -d. -f2 )"
size=${px}x${px}
dir=$PKG/usr/share/icons/hicolor/$size/apps
mkdir -p $dir
cp -a $i $dir/$PRGNAM.png
done
mkdir -p $PKG/usr/share/pixmaps
install -D -m644 share/OpenLieroX.svg $PKG/usr/share/pixmaps/OpenLieroX.svg
ln -s ../icons/hicolor/32x32/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
mkdir -p $PKG/usr/man/man6
gzip -9c < doc/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz
rm -f doc/$PRGNAM.6
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING.LIB VERSION doc/* $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README.md COPYING.LIB VERSION doc/* $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,10 +1,10 @@
PRGNAM="openlierox"
VERSION="20170313_3825306"
VERSION="20200424_d316c14"
HOMEPAGE="http://www.openlierox.net/"
DOWNLOAD="http://ponce.cc/slackware/sources/repo/openlierox-20170313_3825306.tar.xz"
MD5SUM="7540eab45506561ccae1e75cf42a8fdd"
DOWNLOAD="https://slackware.uk/~urchlay/src/openlierox-20200424_d316c14.tar.xz"
MD5SUM="c1559d7f041fe2a94b41c62dff1d81d7"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="HawkNL freealut"
REQUIRES="freealut"
MAINTAINER="Dimitris Zlatanidis"
EMAIL="d.zlatanidis@gmail.com"