mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
Fixes compilation with GCC15 Compile tested: tplink_tl-wr842n-v3, bananapi_bpi-r3 Signed-off-by: Anari Jalakas <anari.jalakas@gmail.com>
40 lines
958 B
Makefile
40 lines
958 B
Makefile
# 2017 - 2021 Cezary Jackiewicz <cezary@eko.one.pl>
|
|
# 2014 lovewilliam <ztong@vt.edu>
|
|
# SMS tool for 3G/4G/5G modems
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=sms-tool
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://github.com/obsy/sms_tool
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2025-08-23
|
|
PKG_SOURCE_VERSION:=491ffdb0bfbc170929c1c7e947f5b889865df348
|
|
PKG_MIRROR_HASH:=c3dc663923851240ed1c755341626cda34e03f43c14608752e7bb5f879eec486
|
|
|
|
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/5G modems
|
|
URL:=https://github.com/obsy/sms_tool
|
|
endef
|
|
|
|
define Package/sms-tool/description
|
|
SMS tool for 3G/4G/5G modems
|
|
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))
|