diff options
Diffstat (limited to 'packages/btxml')
-rw-r--r-- | packages/btxml/btxml.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/btxml/btxml.bb b/packages/btxml/btxml.bb index e69de29bb2..ee8e38a0e6 100644 --- a/packages/btxml/btxml.bb +++ b/packages/btxml/btxml.bb @@ -0,0 +1,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}/ +} |