aboutsummaryrefslogtreecommitdiffstats
path: root/packages/python/python-pygame_1.8.1.bb
blob: 71eff50dfb3619b1d9d632c9e188acaf01fa44b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DESCRIPTION = "Python libSDL Bindings"
SECTION = "devel/python"
HOMEPAGE = "http://www.pygame.org"
PRIORITY = "optional"
LICENSE = "LGPL"
DEPENDS = "libsdl-x11 libsdl-image libsdl-mixer libsdl-net libsdl-ttf smpeg python-numeric"
SRCNAME = "pygame"
PR = "ml1"

SRC_URI = "\
  ftp://ftp.pygame.org/pub/pygame/${SRCNAME}-${PV}release.tar.gz \
  file://Setup"
S = "${WORKDIR}/${SRCNAME}-${PV}release"

inherit distutils

do_configure_prepend() {
	cat ${WORKDIR}/Setup >Setup
	SDL="`sdl-config --cflags` `sdl-config --libs`"; echo "SDL=$SDL" >>Setup
}

do_stage() {
	distutils_stage_all
}

RDEPENDS = "python-numeric"