mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 13:20:08 +02:00
60 lines
1.4 KiB
Bash
60 lines
1.4 KiB
Bash
SUMMARY="Tool for creating Simutrans paksets"
|
|
DESCRIPTION="Makeobj is a tool for graphics/pakset developers \
|
|
and is not needed for playing the game.
|
|
Makeobj joins both the image and the data files in a single \
|
|
compressed pak-file that will then be read by the game engine."
|
|
HOMEPAGE="http://www.simutrans.com"
|
|
SOURCE_URI="svn://tron.yamagi.org/simutrans/simutrans/trunk \
|
|
--username=anon --password="
|
|
SOURCE_FILENAME="simutrans-$portVersion"
|
|
SOURCE_DIR="trunk"
|
|
COPYRIGHT="1997-2004 Hj. Malthaner
|
|
2005-2015 The Simutrans Team"
|
|
LICENSE="Artistic"
|
|
REVISION="3"
|
|
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
PROVIDES="
|
|
makeobj$secondaryArchSuffix = $portVersion
|
|
cmd:makeobj$secondaryArchSuffix = 55.4
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
lib:libpng$secondaryArchSuffix
|
|
lib:libbz2$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libsdl$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
devel:libpng$secondaryArchSuffix
|
|
devel:libbz2$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:svn
|
|
cmd:autoreconf
|
|
cmd:aclocal
|
|
cmd:make
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:strip$secondaryArchSuffix
|
|
cmd:sdl_config$secondaryArchSuffix
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf configure.ac
|
|
runConfigure ./configure
|
|
make makeobj $jobArgs
|
|
strip makeobj/makeobj
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
fixPkgconfig
|
|
mkdir -p $binDir
|
|
cp -r makeobj/makeobj $binDir/
|
|
}
|