From 44f202c5507f759cd753bd6f96607ba2d24fc9ab Mon Sep 17 00:00:00 2001 From: John Date: Mon, 7 Oct 2019 01:22:17 +0300 Subject: [PATCH] scummvm: update to 2.1.0. --- srcpkgs/scummvm/template | 40 +++++++++++++++++----------------------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/srcpkgs/scummvm/template b/srcpkgs/scummvm/template index c24ae51929e..d5679491bb8 100644 --- a/srcpkgs/scummvm/template +++ b/srcpkgs/scummvm/template @@ -1,36 +1,30 @@ # Template file for 'scummvm' pkgname=scummvm -version=2.0.0 +version=2.1.0 revision=1 build_style=configure -configure_args="--prefix=/usr --enable-plugins --enable-all-engines" +configure_args="--prefix=/usr --enable-all-engines + --enable-release-mode --with-sdl-prefix=${XBPS_CROSS_BASE}/usr" hostmakedepends="pkg-config nasm" -makedepends="zlib-devel libpng-devel SDL-devel libmad-devel faad2-devel +makedepends="zlib-devel libpng-devel SDL2-devel libmad-devel faad2-devel fluidsynth-devel libvorbis-devel libtheora-devel libflac-devel freetype-devel libjpeg-turbo-devel" short_desc="Free implementation of LucasArts' SCUMM interpreter" -maintainer="Orphaned " -homepage="http://www.scummvm.org/" -license="GPL-2" -distfiles="http://www.scummvm.org/frs/${pkgname}/${version}/${pkgname}-${version}.tar.xz" -checksum=9784418d555ba75822d229514a05cf226b8ce1a751eec425432e6b7e128fca60 +maintainer="John " +homepage="https://www.scummvm.org/" +license="GPL-2.0-or-later" +distfiles="https://www.scummvm.org/frs/${pkgname}/${version}/${pkgname}-${version}.tar.xz" +checksum=6b50c6596a1536b52865f556dc05ded20f86b6ffabe4bccbd746b5587b15f727 -if [ "$CROSS_BUILD" ]; then - configure_args+=" --host=${XBPS_CROSS_TRIPLET} --disable-nasm" - CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/SDL" +case "$XBPS_TARGET_MACHINE" in + i686*|x86_64*);; + *) configure_args+=" --disable-nasm";; +esac - pre_configure() { - sed -i -e "s|_ranlib=ranlib|_ranlib=${XBPS_CROSS_TRIPLET}-ranlib|" \ - -e "s|_strip=strip|_strip=${XBPS_CROSS_TRIPLET}-strip|" \ - -e "s|_ar=\"ar cru\"|_ar=\"${XBPS_CROSS_TRIPLET}-ar cru\"|" \ - -e "s|_as=\"as\"|_as=\"${XBPS_CROSS_TRIPLET}-as\"|" configure - } +if [ "$CROSS_BUILD" ]; then + configure_args+=" --host=${XBPS_CROSS_TRIPLET}" fi -do_install() { - vbin scummvm - vman dists/scummvm.6 - vinstall dists/scummvm.desktop 644 usr/share/applications - vinstall icons/scummvm.xpm 644 usr/share/pixmaps - vinstall gui/themes/scummmodern.zip 644 usr/share/scummvm +do_check() { + make test }