source: freewrt/package/bluez-firmware/Makefile@ 75a47d8

freewrt_1_0 freewrt_2_0
Last change on this file since 75a47d8 was 75a47d8, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago
  • fix some broken symlinks in pthread and bluez-libs package
  • add bluez-firmware package needed for my bcm2033 usb bluetooth dongle
  • activate bcm203x utility in bluez-utils
  • add bnep kernel module
  • load bluetooth kernel modules

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1132 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 973 bytes
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= bluez-firmware
10PKG_VERSION:= 1.2
11PKG_RELEASE:= 1
12PKG_MD5SUM:= 1cc3cefad872e937e05de5a0a2b390dd
13
14PKG_SOURCE_URL:= http://bluez.sourceforge.net/download
15
16include $(TOPDIR)/mk/package.mk
17
18$(eval $(call PKG_template,BLUEZ_FIRMWARE,bluez-firmware,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
19
20$(WRKBUILD)/.configured:
21 (cd $(WRKBUILD); ./configure)
22 touch $@
23
24$(WRKBUILD)/.built:
25 rm -rf $(WRKINST)
26 mkdir -p $(WRKINST)
27 $(MAKE) -C $(WRKBUILD) \
28 DESTDIR="$(WRKINST)" \
29 all install
30 touch $@
31
32$(IPKG_BLUEZ_FIRMWARE):
33 install -d -m0755 $(IDIR_BLUEZ_FIRMWARE)/lib/firmware
34 $(CP) $(WRKINST)/lib/firmware/BCM* \
35 $(IDIR_BLUEZ_FIRMWARE)/lib/firmware
36 $(RSTRIP) $(IDIR_BLUEZ_FIRMWARE)
37 $(IPKG_BUILD) $(IDIR_BLUEZ_FIRMWARE) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.