blob: ee8e38a0e67edd5a9e53109a7d6016127a910f98 (
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}/
}
|