scummvm: bump version (#1867)

This commit is contained in:
Schrijvers Luc
2017-12-09 13:03:52 +01:00
committed by diversys
parent c7b2fb749d
commit e10f581a9d
2 changed files with 104 additions and 8 deletions

View File

@@ -0,0 +1,88 @@
SUMMARY="Tools for ScummVM"
DESCRIPTION="This is a collection of various tools that may be useful to use \
in conjunction with ScummVM. Please note that although a tool may support a \
feature, certain ScummVM versions may not. ScummVM 0.6.x does not support \
FLAC audio, for example."
HOMEPAGE="https://www.scummvm.org/"
COPYRIGHT="2001-2013 ScummVM Team"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://www.scummvm.org/frs/scummvm-tools/$portVersion/scummvm-tools-$portVersion.tar.xz"
CHECKSUM_SHA256="c2042ccdc6faaf745552bac2c00f213da382a7e382baa96343e508fced4451b3"
SOURCE_DIR="scummvm-tools-$portVersion"
ARCHITECTURES="!x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
cmd:construct_mohawk = $portVersion
cmd:create_sjisfnt = $portVersion
cmd:decine = $portVersion
cmd:degob = $portVersion
cmd:dekyra = $portVersion
cmd:deriven = $portVersion
cmd:descumm = $portVersion
cmd:desword2 = $portVersion
cmd:extract_mohawk = $portVersion
cmd:gob_loadcalc = $portVersion
cmd:scummvm_tools_cli = $portVersion
# not working yet for Qt
#cmd:scummvm_tools = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libvorbis$secondaryArchSuffix
lib:libogg$secondaryArchSuffix
lib:libflac$secondaryArchSuffix
lib:libmad$secondaryArchSuffix
lib:libpng16$secondaryArchSuffix
lib:libz$secondaryArchSuffix
lib:libfreetype$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix
lib:libbz2$secondaryArchSuffix
# not working yet for Qt
#lib:libqt5$secondaryArchSuffix
#lib:libQt5Core$secondaryArchSuffix
#lib:libQt5Gui$secondaryArchSuffix
#lib:libQt5Widgets$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libvorbis$secondaryArchSuffix
devel:libogg$secondaryArchSuffix
devel:libflac$secondaryArchSuffix
devel:libmad$secondaryArchSuffix
devel:libpng$secondaryArchSuffix
devel:libz$secondaryArchSuffix
devel:libfreetype$secondaryArchSuffix
devel:libiconv$secondaryArchSuffix
devel:libbz2$secondaryArchSuffix
# not working yet for Qt
#devel:libqt5$secondaryArchSuffix
#devel:libQt5Core$secondaryArchSuffix
#devel:libQt5Gui$secondaryArchSuffix
#devel:libQt5Widgets$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
# not working yet for Qt
#cmd:wx_config$secondaryArchSuffix
"
BUILD()
{
libtoolize -fci
./configure --prefix=$prefix --datadir=$dataDir
make $jobArgs
}
INSTALL()
{
make install
# data files are not needed as long as we don't
# have a graphical interface for the tools
rm -r $dataDir/scummvm-tools
}