You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. # 2014-2015 Vitaly Protsko
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=gammu
  10. PKG_VERSION:=1.42.0
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  13. PKG_SOURCE_URL:=https://dl.cihar.com/gammu/releases
  14. PKG_HASH:=d8f152314d7e4d3d643610d742845e0a016ce97c234ad4b1151574e1b09651ee
  15. PKG_MAINTAINER:=Vitaly Protsko <villy@sft.ru>
  16. PKG_LICENCE:=GPL-2.0-or-later
  17. PKG_LICENSE_FILES:=COPYING
  18. CMAKE_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/nls.mk
  22. include $(INCLUDE_DIR)/cmake.mk
  23. define Package/gammu
  24. SECTION:=utils
  25. CATEGORY:=Utilities
  26. TITLE:=Cell phone/modem SMS and control tool
  27. URL:=https://wammu.eu/gammu/
  28. DEPENDS:=+libpthread +libcurl +glib2
  29. DEPENDS+=+PACKAGE_bluez-libs:bluez-libs
  30. DEPENDS+=+PACKAGE_libmariadb:libmariadb +PACKAGE_unixodbc:unixodbc +PACKAGE_libpq:libpq
  31. DEPENDS+=+PACKAGE_libusb-1.0:libusb-1.0
  32. endef
  33. CMAKE_OPTIONS += \
  34. -DDWITH_GettextLibs=OFF \
  35. -DWITH_Iconv=OFF \
  36. -DWITH_Libintl=OFF \
  37. -DWITH_LibDBI:BOOL=OFF
  38. define Package/gammu/install
  39. $(INSTALL_DIR) $(1)/usr/bin
  40. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu $(1)/usr/bin
  41. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu-{smsd,smsd-inject,smsd-monitor} $(1)/usr/bin
  42. $(INSTALL_DIR) $(1)/usr/lib
  43. $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{Gammu*,gsmsd*} $(1)/usr/lib
  44. $(INSTALL_DIR) $(1)/etc/init.d
  45. $(INSTALL_DIR) $(1)/etc/config
  46. $(INSTALL_CONF) ./files/gammu $(1)/etc/config/gammu
  47. $(INSTALL_BIN) ./files/gammu.init $(1)/etc/init.d/gammu
  48. endef
  49. define Package/gammu/conffiles
  50. /etc/config/gammu
  51. endef
  52. $(eval $(call BuildPackage,gammu))