From: Jeremy Laine Date: Mon, 19 Nov 2007 20:05:03 +0000 (+0000) Subject: setuptools.bbclass : add class for python packages using setuptools X-Git-Tag: Release-2010-05/1~8336^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1977650fdda4676e78bf23e36317ad885b230bd6;p=openembedded.git setuptools.bbclass : add class for python packages using setuptools --- diff --git a/classes/setuptools.bbclass b/classes/setuptools.bbclass new file mode 100644 index 0000000000..17c039bf33 --- /dev/null +++ b/classes/setuptools.bbclass @@ -0,0 +1,8 @@ +inherit distutils + +DEPENDS += "python-setuptools" + +DISTUTILS_INSTALL_ARGS = "--root=${D} \ + --single-version-externally-managed \ + --prefix=${prefix} \ + --install-data=${datadir}"