暫無描述

Makefile 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=bluez
  9. PKG_VERSION:=5.27
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=http://www.kernel.org/pub/linux/bluetooth/
  13. PKG_MD5SUM:=a8fc508690e497e88c2c0b373cd653a8
  14. PKG_LICENSE:=GPL-2.0
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
  17. PKG_INSTALL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. include $(INCLUDE_DIR)/nls.mk
  20. define Package/bluez/Default
  21. TITLE:=Bluetooth
  22. URL:=http://www.bluez.org/
  23. endef
  24. define Package/bluez-libs
  25. $(call Package/bluez/Default)
  26. SECTION:=libs
  27. CATEGORY:=Libraries
  28. TITLE+= library
  29. DEPENDS:=+libpthread
  30. endef
  31. define Package/bluez-utils
  32. $(call Package/bluez/Default)
  33. SECTION:=utils
  34. CATEGORY:=Utilities
  35. TITLE+= utilities
  36. DEPENDS:=+bluez-libs +libpthread +dbus +glib2 +libical +libncurses +libreadline $(INTL_DEPENDS) $(ICONV_DEPENDS)
  37. endef
  38. define Package/bluez-utils/conffiles
  39. /etc/bluetooth/hcid.conf
  40. /etc/bluetooth/rfcomm.conf
  41. /etc/config/bluetooth
  42. endef
  43. CONFIGURE_ARGS += \
  44. --enable-client \
  45. --enable-datafiles \
  46. --enable-experimental \
  47. --enable-library \
  48. --enable-monitor \
  49. --enable-obex \
  50. --enable-threads \
  51. --enable-tools \
  52. --disable-android \
  53. --disable-cups \
  54. --disable-manpages \
  55. --disable-sixaxis \
  56. --disable-systemd \
  57. --disable-test \
  58. --disable-udev \
  59. TARGET_CPPFLAGS += \
  60. -D_GNU_SOURCE
  61. define Package/bluez-libs/install
  62. $(INSTALL_DIR) $(1)/usr/lib
  63. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbluetooth.so.* $(1)/usr/lib/
  64. endef
  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)/etc/config
  69. $(INSTALL_DATA) ./files/bluetooth.config $(1)/etc/config/bluetooth
  70. $(INSTALL_DIR) $(1)/etc/dbus-1/system.d/
  71. $(INSTALL_DATA) ./files/bluetooth.dbus $(1)/etc/dbus-1/system.d/bluetooth.conf
  72. $(INSTALL_DIR) $(1)/etc/init.d
  73. $(INSTALL_BIN) ./files/bluez-utils.init $(1)/etc/init.d/bluez-utils
  74. endef
  75. $(eval $(call BuildPackage,bluez-libs))
  76. $(eval $(call BuildPackage,bluez-utils))