openobex_1.7.2.bb 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. DESCRIPTION = "The Openobex project is an open source implementation of the \
  2. Object Exchange (OBEX) protocol."
  3. HOMEPAGE = "http://openobex.triq.net"
  4. SECTION = "libs"
  5. LICENSE = "GPLv2 & LGPLv2.1"
  6. LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
  7. file://COPYING.LIB;md5=a6f89e2100d9b6cdffcea4f398e37343 \
  8. "
  9. DEPENDS = "virtual/libusb0"
  10. DEPENDS_append_class-target = " bluez5"
  11. SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}/${PV}/${BP}-Source.tar.gz \
  12. "
  13. SRC_URI[md5sum] = "f6e0b6cb7dcfd731460a7e9a91429a3a"
  14. SRC_URI[sha256sum] = "158860aaea52f0fce0c8e4b64550daaae06df2689e05834697b7e8c7d73dd4fc"
  15. S = "${WORKDIR}/${BP}-Source"
  16. inherit cmake pkgconfig
  17. EXTRA_OECONF = " -DCMAKE_SKIP_RPATH=ON "
  18. EXTRA_OECMAKE += "-DBUILD_DOCUMENTATION=OFF"
  19. ASNEEDED = ""
  20. do_install_append () {
  21. rmdir ${D}${bindir}
  22. }
  23. PACKAGES =+ "openobex-apps"
  24. FILES_${PN}-apps = "${bindir}/*"
  25. FILES_${PN} += "${libdir}/lib*.so.*"
  26. FILES_${PN}-dev += "${bindir}/openobex-config"
  27. DEBIAN_NOAUTONAME_${PN}-apps = "1"
  28. BBCLASSEXTEND = "native"