85 lines
2.4 KiB
Bash
85 lines
2.4 KiB
Bash
# Template file for 'mame'
|
|
pkgname=mame
|
|
version=0172
|
|
revision=1
|
|
wrksrc="mame-mame${version}"
|
|
homepage="http://mamedev.org"
|
|
distfiles="https://github.com/mamedev/mame/archive/mame${version}.tar.gz"
|
|
short_desc="The Multiple Arcade Machine Emulator"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="GPL-2"
|
|
checksum=8e7f4dddf987b51c0166b4ca27443977ebea2618249e81dfc0066c3a3f4efb45
|
|
|
|
hostmakedepends="perl pkg-config python automoc4"
|
|
makedepends="SDL2_ttf-devel $(vopt_if qt qt5-devel) lua-devel libjpeg-turbo-devel
|
|
libflac-devel libuv-devel sqlite-devel portaudio-devel portmidi-devel"
|
|
depends="liberation-fonts-ttf"
|
|
nocross=yes
|
|
replaces="sdlmame>=0 sdlmess>=0"
|
|
|
|
# ETOOBIG for i686
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*) broken="http://build.voidlinux.eu/builders/i686_builder/builds/21957/steps/shell_3/logs/stdio"
|
|
esac
|
|
|
|
CXXFLAGS="-DUSE_INTERNAL_CBEGIN_CEND=1 -I${XBPS_CROSS_BASE}/usr/include/lua5.3"
|
|
|
|
build_options="qt"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="qt"
|
|
fi
|
|
|
|
do_build() {
|
|
local opts="REGENIE=1"
|
|
opts+=" NOWERROR=1"
|
|
opts+=" TOOLS=1"
|
|
opts+=" OPTIMIZE=3"
|
|
opts+=" USE_SYSTEM_LIB_EXPAT=1"
|
|
opts+=" USE_SYSTEM_LIB_ZLIB=1"
|
|
opts+=" USE_SYSTEM_LIB_JPEG=1"
|
|
opts+=" USE_SYSTEM_LIB_FLAC=1"
|
|
opts+=" USE_SYSTEM_LIB_LUA=1"
|
|
opts+=" USE_SYSTEM_LIB_SQLITE3=1"
|
|
opts+=" USE_SYSTEM_LIB_PORTMIDI=1"
|
|
opts+=" USE_SYSTEM_LIB_PORTAUDIO=1"
|
|
opts+=" USE_SYSTEM_LIB_UV=1"
|
|
opts+=" USE_SYSTEM_LIB_SDL2=1"
|
|
if [ "$build_option_qt" ]; then
|
|
opts+=" USE_QTDEBUG=1"
|
|
fi
|
|
if [ "${CROSS_BUILD}" ]; then
|
|
# Doesn't work yet
|
|
opts+=" CROSS_BUILD=1 OVERRIDE_CC=${CC} OVERRIDE_CXX=${CXX} OVERRIDE_LD=${CC}"
|
|
fi
|
|
make ${opts} ${makejobs}
|
|
}
|
|
do_install() {
|
|
local f
|
|
|
|
# Install the mame script
|
|
vbin ${FILESDIR}/${pkgname}.sh ${pkgname}
|
|
|
|
# Install the applications and the UI font in /usr/share/${pkgname}
|
|
if [ -r mame64 ]; then
|
|
vinstall mame64 755 usr/share/${pkgname} ${pkgname}
|
|
else
|
|
vinstall mame 755 usr/share/${pkgname} ${pkgname}
|
|
fi
|
|
|
|
for f in chdman jedutil regrep romcmp testkeys src2html srcclean \
|
|
ldverify ldresample unidasm castool floptool imgtool; do
|
|
vinstall ${f} 755 usr/share/${pkgname}
|
|
if [ -f src/osd/sdl/man/${f}.1 ]; then
|
|
vman src/osd/sdl/man/${f}.1
|
|
fi
|
|
done
|
|
vman src/osd/sdl/man/mame.6
|
|
# Currently mess.6 still exists, so install it as well
|
|
vman src/osd/sdl/man/mess.6
|
|
|
|
# Install the extra bits
|
|
for f in artwork bgfx docs hash hlsl keymaps plugins samples; do
|
|
vcopy ${f} usr/share/${pkgname}
|
|
done
|
|
}
|