diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-22 12:09:09 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-23 20:10:23 +0700 |
commit | 31662e22aba8fde2bed0ece6e53d0a027769007a (patch) | |
tree | 3f33e681a1c9359e62f20e39a88122b2d26c8ec3 /games/tome/tome.SlackBuild | |
parent | ead19a198f93ad10c307bf8a7aac874df8b8886b (diff) |
games/tome: Updated for version 1.6.0.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/tome/tome.SlackBuild')
-rw-r--r-- | games/tome/tome.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/games/tome/tome.SlackBuild b/games/tome/tome.SlackBuild index d7d371fea5cb7..6314d41acaa5e 100644 --- a/games/tome/tome.SlackBuild +++ b/games/tome/tome.SlackBuild @@ -22,11 +22,14 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220221 bkw: Modified by SlackBuilds.org: fix build on 15.0, +# by upgrading to 1.6.0 (not the latest version). + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=tome SRCNAM=t-engine4-src -VERSION=${VERSION:-1.5.10} +VERSION=${VERSION:-1.6.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,9 +42,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 @@ -78,9 +78,9 @@ unzip -oj -qq game/engines/te4-${VERSION}.teae -d icons 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 {} \+ # correction of SDL2 headers directory sed -i "s/opt\/SDL-2.0/usr/" premake4.lua |