summaryrefslogtreecommitdiff
path: root/recipes-connectivity/bluez/python-gatt-server_1.0.bb
blob: d68d9af4d4b7ce86ac91a58497ad423c63409705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
inherit allarch
HOMEPAGE = "https://github.com/Jumperr-labs/python-gatt-server"
SRCREV = "a39ef9773e9ba845f4303b1dfd2efddf24b02238"
PR = "r0"

S = "${WORKDIR}/git"

LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c53d04442d1a229d62549856b7ec456a"

SRC_URI = "git://github.com/Jumperr-labs/python-gatt-server.git;protocol=https"

RDEPENDS_${PN} += "python-dbus python-pygobject"

DBTEXEC = "${libexecdir}/bluetooth/"
DEST = "${D}${DBTEXEC}"

FILES_${PN} = "${DBTEXEC}"


do_install_append() {
	install -d ${DEST}/${PN}
	install -m 0755 ${S}/*.py ${DEST}/${PN}
}