This commit is contained in:
chinky 2023-10-23 12:33:13 +00:00
parent a8c4037fe8
commit db6bfefb2f

View File

@ -1,6 +1,6 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=sms-tool PKG_NAME:=sms-tool-test
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_SOURCE_URL:=https://github.com/obsy/sms_tool PKG_SOURCE_URL:=https://github.com/obsy/sms_tool
@ -11,20 +11,20 @@ PKG_MIRROR_HASH:=0d114a97eb7aeadd95b49281d29371ba0570382125c34f3f8668d34fd0290f4
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/sms-tool define Package/sms-tool-test
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
TITLE:=sms tool TITLE:=sms tool
URL:=https://github.com/obsy/sms_tool URL:=https://github.com/obsy/sms_tool
endef endef
define Package/sms-tool/description define Package/sms-tool-test/description
SMS Tool for 3G/4G modem SMS Tool for 3G/4G modem
endef endef
define Package/sms-tool/install define Package/sms-tool-test/install
$(INSTALL_DIR) $(1)/usr/bin $(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/sms_tool $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/sms_tool $(1)/usr/bin/
endef endef
$(eval $(call BuildPackage,sms-tool)) $(eval $(call BuildPackage,sms-tool-test))