mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 13:50:08 +02:00
98 lines
2.7 KiB
Bash
98 lines
2.7 KiB
Bash
SUMMARY="A popular game development module for python"
|
|
DESCRIPTION="PyGame - python bindings to sdl and other libs that facilitate \
|
|
game production."
|
|
HOMEPAGE="https://www.pygame.org/"
|
|
COPYRIGHT="2000-2004, 2007 Pete Shinners
|
|
2004 Takafumi Mizuno
|
|
2006-2007 Rene Dudfield
|
|
2007 Richard Goedeken
|
|
2007-2008 Marcus von Appen"
|
|
LICENSE="GNU LGPL v2.1"
|
|
REVISION="5"
|
|
SOURCE_URI="https://files.pythonhosted.org/packages/source/p/pygame/pygame-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="63b038da116a643046181b02173fd894d87d2f85ecfd6aa7d5ece73c6ef501e9"
|
|
SOURCE_DIR="pygame-$portVersion"
|
|
PATCHES="pygame-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PYTHON_PACKAGES=(python310)
|
|
PYTHON_VERSIONS=(3.10)
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
|
|
PROVIDES="
|
|
pygame$secondaryArchSuffix = $portVersion
|
|
"
|
|
if [ "$targetArchitecture" = x86_gcc2 ]; then
|
|
PROVIDES+="
|
|
pygame = $portVersion
|
|
"
|
|
fi
|
|
REQUIRES="
|
|
cmd:cython$pythonVersion
|
|
cmd:f2py3
|
|
cmd:python3
|
|
lib:libfreetype$secondaryArchSuffix
|
|
lib:libjpeg$secondaryArchSuffix
|
|
lib:libpng16$secondaryArchSuffix
|
|
lib:libSDL_1.2$secondaryArchSuffix
|
|
lib:libSDL_gfx$secondaryArchSuffix
|
|
lib:libSDL_image_1.2$secondaryArchSuffix
|
|
lib:libSDL_mixer_1.2$secondaryArchSuffix
|
|
lib:libSDL_ttf_2.0$secondaryArchSuffix
|
|
# lib:libSDL2_2.0$secondaryArchSuffix
|
|
# lib:libSDL2_gfx_1.0$secondaryArchSuffix
|
|
# lib:libSDL2_image_2.0$secondaryArchSuffix
|
|
# lib:libSDL2_mixer_2.0$secondaryArchSuffix
|
|
# lib:libSDL2_ttf_2.0$secondaryArchSuffix
|
|
lib:libsmpeg_0.4
|
|
"
|
|
# portmidi
|
|
# portmap
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
setuptools_$pythonPackage
|
|
devel:libfreetype$secondaryArchSuffix
|
|
devel:libjpeg$secondaryArchSuffix
|
|
devel:libpng16$secondaryArchSuffix
|
|
devel:libSDL_1.2$secondaryArchSuffix
|
|
devel:libSDL_gfx$secondaryArchSuffix
|
|
devel:libSDL_image_1.2$secondaryArchSuffix
|
|
devel:libSDL_mixer_1.2$secondaryArchSuffix
|
|
devel:libSDL_ttf_2.0$secondaryArchSuffix
|
|
# devel:libSDL2_2.0$secondaryArchSuffix
|
|
# devel:libSDL2_gfx_1.0$secondaryArchSuffix
|
|
# devel:libSDL2_image_2.0$secondaryArchSuffix
|
|
# devel:libSDL2_mixer_2.0$secondaryArchSuffix
|
|
# devel:libSDL2_ttf_2.0$secondaryArchSuffix
|
|
devel:libsmpeg_0.4
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:cython$pythonVersion
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:python3
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
# don't build without features
|
|
# to build against SDL2 remove -sdl1 from the next line
|
|
python=python$pythonVersion
|
|
echo "y" | $python setup.py build -auto -sdl1 || exit 1
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# GENERIC: all python_setuptools-based installs need this
|
|
python=python$pythonVersion
|
|
installLocation=$prefix/lib/$python/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
$python setup.py build install \
|
|
--root=/ --prefix=$prefix
|
|
}
|