blob: d072b85bace3ca1c9af9ff55abd6736f3b474d35 (
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"
HOMEPAGE = "http://www.saftware.de"
SECTION = "apps"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "bluez-libs"
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}/
}
|