mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
78 lines
1.7 KiB
Bash
78 lines
1.7 KiB
Bash
SUMMARY="A free, open-source cross-platform game engine"
|
|
DESCRIPTION="FIFE is a free, open-source cross-platform game engine. It \
|
|
features hardware-accelerated 2D graphics, integrated GUI, audio support, \
|
|
lighting, map editor supporting top-down and isometric maps, pathfinding, \
|
|
virtual filesystem and more!"
|
|
HOMEPAGE="http://www.fifengine.net/"
|
|
SOURCE_URI="https://github.com/fifengine/fifengine/archive/50d2f7cf9a5d5433102c32851e587e3e9142d2e0.tar.gz"
|
|
LICENSE="GNU LGPL v2.1"
|
|
COPYRIGHT="2003-2015 FIFE"
|
|
CHECKSUM_SHA256="5ed17fff9b9892ad4b6ef0500b314b4428c8c60dd2cf50669a62527923cfb519"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86 x86_64"
|
|
SOURCE_DIR="fifengine-50d2f7cf9a5d5433102c32851e587e3e9142d2e0"
|
|
PATCHES="fife-$portVersion.patchset"
|
|
|
|
PROVIDES="
|
|
fife = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
python
|
|
lib:libboost_filesystem
|
|
lib:libboost_regex
|
|
lib:libboost_system
|
|
lib:libfifechan
|
|
lib:libfifechan_sdl
|
|
lib:libogg
|
|
lib:libopenal
|
|
lib:libpng
|
|
lib:libsdl
|
|
lib:libsdl_image
|
|
lib:libsdl_ttf
|
|
lib:libvorbisfile
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:gcc
|
|
cmd:scons
|
|
cmd:swig
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libboost_filesystem
|
|
devel:libboost_regex
|
|
devel:libboost_system
|
|
devel:libfifechan
|
|
devel:libfifechan_sdl
|
|
devel:libogg
|
|
devel:libopenal
|
|
devel:libpng
|
|
devel:libsdl
|
|
devel:libsdl_image
|
|
devel:libsdl_ttf
|
|
devel:libvorbisfile
|
|
devel:libz
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
scons --disable-opengl --disable-githash --local-tinyxml $jobArgs \
|
|
fife-python
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
pythonVersion=$(python -c 'import sys; print(str(sys.version_info[0]) + "." + str(sys.version_info[1]))')
|
|
|
|
vendorPackagesPath="$libDir/python$pythonVersion/vendor-packages"
|
|
|
|
mkdir -p "$vendorPackagesPath"
|
|
|
|
scons --disable-opengl --disable-githash --local-tinyxml $jobArgs \
|
|
--python-prefix="$vendorPackagesPath" install-python
|
|
}
|