diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-07 06:45:48 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-07 06:45:48 +0000 |
commit | 16047636dc47e79417744b2860b287e319172ed9 (patch) | |
tree | cc8b2038eadf0b42615c9e047d8098ddfec4b6b6 /meta-extras | |
parent | 72c007755eaadea894516da312776fc8f0cb54ab (diff) | |
download | poky-16047636dc47e79417744b2860b287e319172ed9.tar.gz |
python-scons: added 0.96.1 needed to build SVN versions of opensync
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1874 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras')
-rw-r--r-- | meta-extras/packages/python/python-scons-native_0.96.1.bb | 14 | ||||
-rw-r--r-- | meta-extras/packages/python/python-scons_0.96.1.bb | 10 |
2 files changed, 24 insertions, 0 deletions
diff --git a/meta-extras/packages/python/python-scons-native_0.96.1.bb b/meta-extras/packages/python/python-scons-native_0.96.1.bb new file mode 100644 index 0000000000..31bce5583d --- /dev/null +++ b/meta-extras/packages/python/python-scons-native_0.96.1.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | require python-scons_${PV}.bb | ||
2 | inherit native | ||
3 | DEPENDS = "python-native" | ||
4 | RDEPENDS = "" | ||
5 | |||
6 | do_stage() { | ||
7 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | ||
8 | ${STAGING_BINDIR}/python setup.py install --prefix=${STAGING_LIBDIR}/.. --install-data=${STAGING_DATADIR} || \ | ||
9 | oefatal "python setup.py install execution failed." | ||
10 | } | ||
11 | |||
12 | do_install() { | ||
13 | : | ||
14 | } | ||
diff --git a/meta-extras/packages/python/python-scons_0.96.1.bb b/meta-extras/packages/python/python-scons_0.96.1.bb new file mode 100644 index 0000000000..dc5b40243e --- /dev/null +++ b/meta-extras/packages/python/python-scons_0.96.1.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | DESCRIPTION = "A Software Construction Tool" | ||
2 | SECTION = "devel/python" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "GPL" | ||
5 | SRCNAME = "scons" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/scons/scons-${PV}.tar.gz" | ||
8 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
9 | |||
10 | inherit distutils | ||