1234567891011121314151617181920212223242526272829 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= bluez-firmware
- PKG_VERSION:= 1.2
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 1cc3cefad872e937e05de5a0a2b390dd
- PKG_DESCR:= firmware for BCM2033
- PKG_SECTION:= misc
- PKG_DEPENDS:= kmod-bt bluez
- PKG_URL:= http://www.bluez.org/
- PKG_SITES:= http://bluez.sourceforge.net/download/
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,BLUEZ_FIRMWARE,bluez-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIGURE_ARGS+= --libdir=/lib
- post-install:
- ${INSTALL_DIR} ${IDIR_BLUEZ_FIRMWARE}/lib/firmware
- ${CP} ${WRKINST}/lib/firmware/BCM* \
- ${IDIR_BLUEZ_FIRMWARE}/lib/firmware
- include ${TOPDIR}/mk/pkg-bottom.mk
|