diff options
Diffstat (limited to 'python/python-soappy_0.11.3.oe')
-rw-r--r-- | python/python-soappy_0.11.3.oe | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/python/python-soappy_0.11.3.oe b/python/python-soappy_0.11.3.oe index e69de29bb2..7d8fdee9a8 100644 --- a/python/python-soappy_0.11.3.oe +++ b/python/python-soappy_0.11.3.oe @@ -0,0 +1,18 @@ +DESCRIPTION = "Python SOAP Bindings" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +RDEPENDS = "libc6 python-core python-xml python-fpconst" +DEPENDS = "virtual/libc" +SRCNAME = "SOAPpy" + +SRC_URI = ${SOURCEFORGE_MIRROR}/pywebsvcs/${SRCNAME}-${PV}.tar.gz +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit distutils + +# *cough*, yes this is a bit hackish.. but for now ;) + +do_compile_prepend() { + install -m 0644 ${FILESDIR}/fpconst.py ${S}/SOAPpy/fpconst.py +} |