Another pass of .oe cleanups.
[vuplus_openembedded] / python / python-native_2.3.3.oe
1 DESCRIPTION = "Python Programming Language"
2 SECTION = "base"
3 PRIORITY = "optional"
4 MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
5 DEPENDS = "patcher-native"
6
7 SRC_URI = "ftp://www.python.org/pub/python/${PV}/Python-${PV}.tar.bz2 \
8            file://${FILESDIR}/bindir-libdir.patch;patch=1             \
9            file://${FILESDIR}/cross-distutils.patch;patch=1"
10 S = "${WORKDIR}/Python-${PV}"
11
12 inherit autotools native
13
14 EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc --with-prefix=${STAGING_DIR} --with-exec-prefix=${STAGING_DIR}/build"
15
16 do_configure () {
17         oe_runconf
18 }
19
20 do_stage_append() {
21         # install pgen for later usage with non-native builds
22         install Parser/pgen ${STAGING_DIR}/build/bin
23 }
24