Makefile 896 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= bluez-firmware
  5. PKG_VERSION:= 1.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 1cc3cefad872e937e05de5a0a2b390dd
  8. PKG_DESCR:= firmware for bcm2033 bluetooth dongle
  9. PKG_SECTION:= sys/firmware
  10. PKG_DEPENDS:= bluez
  11. PKG_URL:= http://www.bluez.org/
  12. PKG_SITES:= http://bluez.sourceforge.net/download/
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  14. include ${ADK_TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,BLUEZ_FIRMWARE,bluez-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ARGS+= --libdir=/lib
  17. post-install:
  18. ${INSTALL_DIR} ${IDIR_BLUEZ_FIRMWARE}/lib/firmware
  19. ${CP} ${WRKINST}/lib/firmware/BCM* \
  20. ${IDIR_BLUEZ_FIRMWARE}/lib/firmware
  21. include ${ADK_TOPDIR}/mk/pkg-bottom.mk