2022-10-08 03:10:12 +08:00
|
|
|
# 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
|
treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.
The following temporary change was made to the core:
diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))
COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))
all:
FORCE: ;
And this command used to fix affected packages:
for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
make package/$i/download
done
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-22 00:32:27 +08:00
|
|
|
PKG_RELEASE:=1
|
2022-10-08 03:10:12 +08:00
|
|
|
|
|
|
|
PKG_SOURCE_URL:=https://github.com/obsy/sms_tool
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2023-09-25 07:39:02 +08:00
|
|
|
PKG_SOURCE_DATE:=2023-09-21
|
|
|
|
PKG_SOURCE_VERSION:=1b6ca03284fd65db8799dbf7c6224210093786b0
|
2024-04-06 18:47:54 +08:00
|
|
|
PKG_MIRROR_HASH:=ea17426c945c29c1361f9e69ae1d980d8bd51a008876111ffb8f55146477bdba
|
2022-10-08 03:10:12 +08:00
|
|
|
|
|
|
|
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))
|