blob: b48ebb79f6a47da5e82fd52822cfe2f7c205b106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Bluetooh Download Data from remote phones"
PRIORITY = "optional"
SECTIONS = "apps"
DEPENDS = "bluez-libs"
HOMEPAGE = "http://www.saftware.de"
LICENSE = "GPL"
SRC_URI = "http://www.saftware.de/bluetooth/btxml.c"
S = "${WORKDIR}"
do_compile() {
${CC} ${CPPFLAGS} -c -o btxml.o btxml.c
${CC} -o btxml -lbluetooth -L${STAGING_LIBDIR} btxml.o
}
do_install() {
install -d ${D}${bindir}/
install -m 0775 btxml ${D}${bindir}/
}
|