blob: f4f7b5797fb99d9e52c195d5cb361fde18e61f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "A pure Python implementation of Zeroconf"
SECTION = "devel/python"
PRIORITY = "optional"
RDEPENDS = "python-core"
LICENSE = "LGPL"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/pyzeroconf/pyzeroconf-${PV}.tgz"
S = "${WORKDIR}/pyzeroconf-${PV}"
inherit distutils-base
do_install() {
install -d ${D}${libdir}
install -d ${D}${libdir}/${PYTHON_DIR}
install -d ${D}${libdir}/${PYTHON_DIR}/site-packages
install -m 0644 Zeroconf.py ${D}${libdir}/${PYTHON_DIR}/site-packages/
}
|