diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/python-native_2.3.3.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/python/python-native_2.3.3.oe b/python/python-native_2.3.3.oe index e69de29bb2..118a1d6a14 100644 --- a/python/python-native_2.3.3.oe +++ b/python/python-native_2.3.3.oe @@ -0,0 +1,25 @@ +DESCRIPTION="Python Programming Language" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Michael Lauer <mickey@Vanille.de>" + +SRC_URI = ftp://www.python.org/pub/python/${PV}/Python-${PV}.tar.bz2 \ + file://${FILESDIR}/bindir-libdir.patch;patch=1 + +S = ${WORKDIR}/Python-${PV} + +inherit autotools native + +DEPENDS=patcher-native + +EXTRA_OECONF = '--with-threads --with-pymalloc --with-cyclic-gc --with-exec-prefix=${STAGING_DIR}/build' +do_configure () { + oe_runconf +} + +do_stage_append() { + # install pgen for later usage with non-native builds + install Parser/pgen ${STAGING_DIR}/build/bin +} + + |