745f29cc0e24ca9beb6217ba242d453376c97807
[openwrt/svn-archive/archive.git] / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=bluez-utils
12 PKG_VERSION:=2.24
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://bluez.sourceforge.net/download
17 PKG_MD5SUM:=5f5488ff3d31bdb9cd36b7991fe68408
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/bluez-utils
26 SECTION:=utils
27 CATEGORY:=Utilities
28 DEPENDS:=+bluez-libs +libpthread
29 TITLE:=Bluetooth utilities
30 URL:=http://www.bluez.org/
31 endef
32
33 define Package/bluez-utils/conffiles
34 /etc/bluetooth/givepin
35 /etc/bluetooth/hcid.conf
36 /etc/bluetooth/rfcomm.conf
37 endef
38
39 define Build/Configure
40 $(call Build/Configure/Default, \
41 --disable-dbus \
42 --disable-fuse \
43 --disable-obex \
44 --disable-alsa \
45 --disable-cups \
46 --disable-pcmcia \
47 --disable-initscripts \
48 --disable-bccmd \
49 --disable-avctrl \
50 --disable-hid2hci \
51 --disable-dfutool \
52 --disable-bcm203x \
53 --disable-bluepin \
54 --with-bluez="$(STAGING_DIR)/usr/include" \
55 --with-usb=no \
56 )
57 endef
58
59 define Build/Compile
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 DESTDIR="$(PKG_INSTALL_DIR)" \
62 all install
63 endef
64
65 define Package/bluez-utils/install
66 $(INSTALL_DIR) $(1)/usr/bin
67 $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
68 $(INSTALL_DIR) $(1)/usr/sbin
69 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
70 $(INSTALL_DIR) $(1)/etc/bluetooth
71 $(CP) $(PKG_INSTALL_DIR)/../hcid/hcid.conf $(1)/etc/bluetooth/
72 $(CP) $(PKG_INSTALL_DIR)/../rfcomm/rfcomm.conf $(1)/etc/bluetooth/
73 install -m0700 ./files/givepin $(1)/etc/bluetooth/
74 endef
75
76 $(eval $(call BuildPackage,bluez-utils))