mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
games/bstone: Updated for version 1.1.8.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
b5c3eeaa17
commit
ad08b383f1
4 changed files with 14 additions and 15 deletions
|
@ -6,10 +6,12 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20170807 bkw: update for v1.1.8, use upstream's icon instead of mine.
|
||||
|
||||
# 20170621 bkw: fix build on -current
|
||||
|
||||
PRGNAM=bstone
|
||||
VERSION=${VERSION:-1.1.7}
|
||||
VERSION=${VERSION:-1.1.8}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -55,9 +57,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 a missing include, needed for gcc7
|
||||
sed -i '1i#include <memory>' bstone_memory_binary_reader.cpp
|
||||
|
||||
# look in /usr/share/games/bstone for game data files, not the
|
||||
# directory the executable lives in. the --data_dir option can
|
||||
# still override this.
|
||||
|
@ -74,7 +73,7 @@ cd build
|
|||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||
-DMAN_INSTALL_DIR=/usr/man \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
-DCMAKE_BUILD_TYPE=Release ../src
|
||||
make
|
||||
|
||||
mkdir -p $PKG/usr/games $PKG/usr/share/games/$PRGNAM
|
||||
|
@ -85,15 +84,15 @@ cd build
|
|||
install -oroot -groot -m0644 *.BS1 $PKG/usr/share/games/$PRGNAM
|
||||
cd ..
|
||||
|
||||
# man page and .desktop written for this build. icon made from screenshot
|
||||
# of the game's title screen.
|
||||
# man page and .desktop written for this build. icon converted from upstream's
|
||||
# src/sys/win32/bstone_icon.ico.
|
||||
mkdir -p $PKG/usr/share/applications $PKG/usr/share/pixmaps $PKG/usr/man/man6
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
gzip -9c < $CWD/$PRGNAM.6 > $PKG/usr/man/man6/$PRGNAM.6.gz
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a LICENSE README.md *.doc bstone_todo.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a LICENSE README.md *.doc src/bstone_todo.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
PRGNAM="bstone"
|
||||
VERSION="1.1.7"
|
||||
VERSION="1.1.8"
|
||||
HOMEPAGE="http://bibendovsky.github.io/bstone/"
|
||||
DOWNLOAD="https://github.com/bibendovsky/bstone/archive/v1.1.7.tar.gz \
|
||||
DOWNLOAD="https://github.com/bibendovsky/bstone/archive/v1.1.8/bstone-1.1.8.tar.gz \
|
||||
https://archive.org/download/BlakeStoneAliensOfGold/1bs30.zip"
|
||||
MD5SUM="92aba776c04fe44c66d446f3417efaa3 \
|
||||
MD5SUM="d52a903d7a516b97ec4ca156d0a73758 \
|
||||
a63c88fc5b399ffb5ed42dc215321f36"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 5.5 KiB |
|
@ -1,7 +1,7 @@
|
|||
diff -Naur bstone-1.1.7.orig/3d_main.cpp bstone-1.1.7/3d_main.cpp
|
||||
--- bstone-1.1.7.orig/3d_main.cpp 2016-04-09 08:21:25.000000000 -0400
|
||||
+++ bstone-1.1.7/3d_main.cpp 2016-08-13 21:47:13.965436399 -0400
|
||||
@@ -9138,20 +9138,7 @@
|
||||
diff -Naur bstone-1.1.8/src/3d_main.cpp bstone-1.1.8.patched/src/3d_main.cpp
|
||||
--- bstone-1.1.8/src/3d_main.cpp 2017-08-06 06:52:35.000000000 -0400
|
||||
+++ bstone-1.1.8.patched/src/3d_main.cpp 2017-08-07 12:33:38.268538355 -0400
|
||||
@@ -9658,20 +9658,7 @@
|
||||
|
||||
const std::string& get_default_data_dir()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue