31 lines
725 B
Makefile
31 lines
725 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=sms-tool-test
|
|
PKG_RELEASE:=1
|
|
|
|
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
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sms-tool-test
|
|
SECTION:=TEST
|
|
CATEGORY:=TEST
|
|
TITLE:=sms tool
|
|
URL:=https://github.com/obsy/sms_tool
|
|
endef
|
|
|
|
define Package/sms-tool-test/description
|
|
TEST: SMS Tool for 3G/4G modem
|
|
endef
|
|
|
|
define Package/sms-tool-test/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/sms_tool $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sms-tool-test))
|