blob: e299d4ff637571e896fe7d1c1e0f7108928884ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Python SOAP Bindings"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
RDEPENDS = "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
}
|