diff options
author | Andrey Butirsky <butirsky@gmail.com> | 2022-10-07 22:10:12 +0300 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-11-04 13:12:48 -0700 |
commit | 369cb8dc4b26bfcec851d4036990231b6d8044a0 (patch) | |
tree | e182f515b1d67f093a171f75ab98526a75e9a405 /utils/sms-tool | |
parent | 1d88250815b5efe623bb01a591c4ca651c8f5600 (diff) |
sms-tool: SMS Tool for 3G/4G modem
Co-authored-by: Cezary Jackiewicz <cezary@eko.one.pl>
Co-authored-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Signed-off-by: Andrey Butirsky <butirsky@gmail.com>
Diffstat (limited to 'utils/sms-tool')
-rw-r--r-- | utils/sms-tool/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/utils/sms-tool/Makefile b/utils/sms-tool/Makefile new file mode 100644 index 000000000..1b36529a2 --- /dev/null +++ b/utils/sms-tool/Makefile @@ -0,0 +1,39 @@ +# 2017 - 2021 Cezary Jackiewicz <cezary@eko.one.pl> +# 2014 lovewilliam <ztong@vt.edu> +# sms tool for various of 3g/4g modem +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=sms-tool +PKG_RELEASE:=$(AUTORELEASE) + +PKG_SOURCE_URL:=https://github.com/obsy/sms_tool +PKG_SOURCE_PROTO:=git +PKG_SOURCE_DATE:=2022-03-21 +PKG_SOURCE_VERSION:=f07699ab5189656f595ffa75872c8938bf4b40ac +PKG_MIRROR_HASH:=0d114a97eb7aeadd95b49281d29371ba0570382125c34f3f8668d34fd0290f46 + +PKG_MAINTAINER:=Andrey Butirsky <butirsky@gmail.com> +PKG_LICENSE:=Apache-2.0 +PKG_LICENSE_FILES:=LICENSE-2.0.txt + +include $(INCLUDE_DIR)/package.mk + +define Package/sms-tool + SECTION:=utils + CATEGORY:=Utilities + TITLE:=SMS tool for 3G/4G modems + URL:=https://github.com/obsy/sms_tool +endef + +define Package/sms-tool/description + SMS Tool for 3G/4G modem +endef + +define Package/sms-tool/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/sms_tool $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,sms-tool)) |