ec4f49e849d3a4a602c2a65996a7d69ea8839896
[packages.git] / utils / bluez-utils / 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:=3.36
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:=4fc292b635ba7b442c7aaf5680199012
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/bluez-utils
22   SECTION:=utils
23   CATEGORY:=Utilities
24   DEPENDS:=+bluez-libs +libpthread +dbus +libintl +libiconv
25   TITLE:=Bluetooth utilities
26   URL:=http://www.bluez.org/
27 endef
28
29 define Package/bluez-utils/conffiles
30 /etc/bluetooth/hcid.conf
31 /etc/bluetooth/rfcomm.conf
32 /etc/config/bluetooth
33 endef
34
35 CONFIGURE_ARGS += \
36         --enable-pand \
37         --enable-rfcomm \
38         --enable-dund \
39         --enable-serial \
40         --enable-network \
41         --enable-usb \
42         --enable-input \
43         --disable-audio \
44         --with-bluez="$(STAGING_DIR)/usr/include" \
45         --with-usb=yes \
46
47 define Build/Compile
48         $(MAKE) -C $(PKG_BUILD_DIR) \
49                 LDFLAGS="-L$(STAGING_DIR)/usr/lib \
50                         -L$(STAGING_DIR)/usr/lib/libintl/lib \
51                         -L$(STAGING_DIR)/usr/lib/libiconv/lib" \
52                 DESTDIR="$(PKG_INSTALL_DIR)" \
53                 all install
54 endef
55
56 #copy bluetooth.conf nach /etc/dbus-1/system.d/
57
58 define Package/bluez-utils/install
59         $(INSTALL_DIR) $(1)/usr/bin
60         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
61         $(INSTALL_DIR) $(1)/usr/sbin
62         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
63         $(INSTALL_DIR) $(1)/etc/bluetooth
64         $(CP) $(PKG_INSTALL_DIR)/../hcid/hcid.conf $(1)/etc/bluetooth/
65         $(CP) $(PKG_INSTALL_DIR)/../rfcomm/rfcomm.conf $(1)/etc/bluetooth/
66         $(INSTALL_DIR) $(1)/etc/config
67         $(INSTALL_DATA) ./files/bluetooth.conf $(1)/etc/config/bluetooth
68         $(INSTALL_DIR) $(1)/etc/dbus-1/system.d/
69         $(INSTALL_DIR) $(1)/etc/init.d
70         $(INSTALL_BIN) ./files/bluez-utils.init $(1)/etc/init.d/bluez-utils
71 endef
72
73 $(eval $(call BuildPackage,bluez-utils))