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.

62 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. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/nls.mk
  21. include ../../devel/ninja/ninja-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. -DDWITH_GettextLibs=OFF \
  34. -DWITH_Iconv=OFF \
  35. -DWITH_Libintl=OFF \
  36. -DWITH_LibDBI:BOOL=OFF
  37. define Package/gammu/install
  38. $(INSTALL_DIR) $(1)/usr/bin
  39. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu $(1)/usr/bin
  40. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gammu-{smsd,smsd-inject,smsd-monitor} $(1)/usr/bin
  41. $(INSTALL_DIR) $(1)/usr/lib
  42. $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{Gammu*,gsmsd*} $(1)/usr/lib
  43. $(INSTALL_DIR) $(1)/etc/init.d
  44. $(INSTALL_DIR) $(1)/etc/config
  45. $(INSTALL_CONF) ./files/gammu $(1)/etc/config/gammu
  46. $(INSTALL_BIN) ./files/gammu.init $(1)/etc/init.d/gammu
  47. endef
  48. define Package/gammu/conffiles
  49. /etc/config/gammu
  50. endef
  51. $(eval $(call BuildPackage,gammu))