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.

59 lines
1.6 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.41.0
  11. PKG_RELEASE:=3
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  13. PKG_SOURCE_URL:=https://dl.cihar.com/gammu/releases
  14. PKG_HASH:=8426b69b07b259de301f41163fab5587935e27b94cc5eefab9277773b3e4df8f
  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)/cmake.mk
  22. define Package/gammu
  23. SECTION:=utils
  24. CATEGORY:=Utilities
  25. TITLE:=Cell phone/modem SMS and control tool
  26. URL:=https://wammu.eu/gammu/
  27. DEPENDS:=+libpthread +libcurl +glib2
  28. DEPENDS+=+PACKAGE_bluez-libs:bluez-libs
  29. DEPENDS+=+PACKAGE_libmariadb:libmariadb +PACKAGE_unixodbc:unixodbc +PACKAGE_libpq:libpq
  30. DEPENDS+=+PACKAGE_libusb-1.0:libusb-1.0
  31. endef
  32. CMAKE_OPTIONS += \
  33. -DWITH_LibDBI:BOOL=OFF
  34. define Package/gammu/install
  35. $(INSTALL_DIR) $(1)/usr/bin
  36. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu $(1)/usr/bin
  37. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu-{smsd,smsd-inject,smsd-monitor} $(1)/usr/bin
  38. $(INSTALL_DIR) $(1)/usr/lib
  39. $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{Gammu*,gsmsd*} $(1)/usr/lib
  40. $(INSTALL_DIR) $(1)/etc/init.d
  41. $(INSTALL_DIR) $(1)/etc/config
  42. $(INSTALL_CONF) ./files/gammu $(1)/etc/config/gammu
  43. $(INSTALL_BIN) ./files/gammu.init $(1)/etc/init.d/gammu
  44. endef
  45. define Package/gammu/conffiles
  46. /etc/config/gammu
  47. endef
  48. $(eval $(call BuildPackage,gammu))