mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
games/mame: Updated for version 0.260.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
7572f316f0
commit
56452f2326
4 changed files with 16 additions and 4 deletions
|
@ -21,3 +21,8 @@ set TMP to in the environment).
|
|||
Optionally, MAME can be built with the GroovyMAME patch. Export
|
||||
GROOVY=yes in the script's environment. If it doesn't work, see
|
||||
README_groovy.txt for details.
|
||||
|
||||
Optionally, MAME can be build with support for bgfx graphics in
|
||||
Wayland. To do this, export WAYLAND=yes in the environment. Note
|
||||
that the SlackBuild author doesn't use Wayland and hasn't tested this
|
||||
(other than making sure it compiles).
|
||||
|
|
BIN
games/mame/gm0260sr002w.diff.xz
Normal file
BIN
games/mame/gm0260sr002w.diff.xz
Normal file
Binary file not shown.
|
@ -9,6 +9,7 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20231031 bkw: Updated for v0.260, add WAYLAND option.
|
||||
# 20230710 bkw: Updated for v0.256.
|
||||
# 20230428 bkw: Updated for v0.254.
|
||||
# 20230103 bkw: Updated for v0.251.
|
||||
|
@ -46,7 +47,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=mame
|
||||
VERSION=${VERSION:-0.256}
|
||||
VERSION=${VERSION:-0.260}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -248,6 +249,11 @@ if [ "${PACONLY:-no}" = "yes" ]; then
|
|||
PACOPT="SOURCES=src/mame/drivers/pacman.cpp"
|
||||
fi
|
||||
|
||||
# 20231031 bkw: build option for wayland, see README
|
||||
if [ "${WAYLAND:-no}" = "yes" ]; then
|
||||
WAYLOPT="USE_WAYLAND=1"
|
||||
fi
|
||||
|
||||
# 20211111 bkw: build with ccache by default, now that it works.
|
||||
if [ "${USE_CCACHE:-yes}" = "yes" ]; then
|
||||
CC="/usr/bin/ccache /usr/bin/clang"
|
||||
|
@ -276,6 +282,7 @@ make USE_QTDEBUG=$QTOPT \
|
|||
TOOLS=1 \
|
||||
TARGET=$PRGNAM \
|
||||
$PACOPT \
|
||||
$WAYLOPT \
|
||||
SUBTARGET=$PRGNAM
|
||||
|
||||
# No 'make install' target, do it manually.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="mame"
|
||||
VERSION="0.256"
|
||||
VERSION="0.260"
|
||||
HOMEPAGE="http://mamedev.org/"
|
||||
DOWNLOAD="https://github.com/mamedev/mame/archive/mame0256/mame-mame0256.tar.gz"
|
||||
MD5SUM="5bfafcc5ce205a01a7eafc00a1b6cc81"
|
||||
DOWNLOAD="https://github.com/mamedev/mame/archive/mame0260/mame-mame0260.tar.gz"
|
||||
MD5SUM="cb88fec1a1b6bec0e4d1a14d1ed4a00e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue