30 lines
618 B
Makefile
30 lines
618 B
Makefile
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:=2021-08-24
|
|
PKG_SOURCE_VERSION:=57a68d07c3d38fd8766d2705fd2a2c1ae01ee004
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sms-tool
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=sms tool
|
|
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))
|