Makefile 791 B

1234567891011121314151617181920212223242526
  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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= b43-firmware
  5. PKG_VERSION:= 1.0
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 37c8d2c029a7e5b82f4433a6fa1e2ee5
  8. PKG_DESCR:= firmware for b43 wireless cards
  9. PKG_SECTION:= wifi
  10. PKG_SITES:= http://openadk.org/distfiles/
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,B43_FIRMWARE,b43-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. CONFIG_STYLE:= manual
  14. BUILD_STYLE:= manual
  15. INSTALL_STYLE:= manual
  16. do-install:
  17. ${INSTALL_DIR} ${IDIR_B43_FIRMWARE}/lib/firmware
  18. ${CP} ${WRKBUILD}/* ${IDIR_B43_FIRMWARE}/lib/firmware/
  19. include ${TOPDIR}/mk/pkg-bottom.mk