From 22129691d02ed51fa60718e893ab8373873644e6 Mon Sep 17 00:00:00 2001 From: Kenneth Johansson Date: Fri, 20 Feb 2015 17:53:36 +0100 Subject: [PATCH] Add bluez 5.28. Userspace tools and libs only. Update of cg301 target --- bluez/Makefile | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 bluez/Makefile diff --git a/bluez/Makefile b/bluez/Makefile new file mode 100644 index 000000000..2d3f90420 --- /dev/null +++ b/bluez/Makefile @@ -0,0 +1,81 @@ +# +# Copyright (C) 2006-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=bluez +PKG_VERSION:=5.28 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz +PKG_SOURCE_URL:=http://www.kernel.org/pub/linux/bluetooth +PKG_MD5SUM:=bc20a8285530758c68f6a60e4ca62a15 + +PKG_FIXUP:=autoreconf +PKG_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/nls.mk + +define Package/bluez + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libpthread +libusb-compat +glib2 +dbus $(INTL_DEPENDS) $(ICONV_DEPENDS) + TITLE:=Bluetooth stack new version + URL:=http://www.bluez.org/ +endef + +define Package/bluez/conffiles +/etc/config/bluetooth +endef + +TARGET_LDFLAGS+= \ + -Wl,-rpath-link=$(STAGING_DIR)/usr/lib/libiconv-full/lib \ + +CONFIGURE_ARGS += \ + --enable-shared \ + --disable-cups \ + --enable-debug \ + --disable-test \ + --disable-obex \ + --disable-systemd \ + --disable-udev \ + --enable-tools \ + --enable-experimental \ + --enable-library \ + --disable-static \ + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + LDFLAGS="$(TARGET_LDFLAGS) \ + -L$(ICONV_PREFIX)/lib \ + -L$(INTL_PREFIX)/lib -lm -lncurses" \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install +endef +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include/bluetooth + $(CP) $(PKG_INSTALL_DIR)/usr/include/bluetooth/*.h $(1)/usr/include/bluetooth + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbluetooth.* $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/bluez.pc $(1)/usr/lib/pkgconfig/ +endef +define Package/bluez/install + $(INSTALL_DIR) $(1)/usr/bin + $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ + + $(INSTALL_DIR) $(1)/etc/bluetooth + $(INSTALL_DIR) $(1)/etc/dbus-1/system.d + $(CP) $(PKG_INSTALL_DIR)/etc/dbus-1/system.d/bluetooth.conf $(1)/etc/dbus-1/system.d/ + + $(INSTALL_DIR) $(1)/usr/lib/bluetooth + $(CP) $(PKG_INSTALL_DIR)/usr/lib/bluetooth/* $(1)/usr/lib/bluetooth + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libblue* $(1)/usr/lib +endef + +$(eval $(call BuildPackage,bluez))