diff options
author | Marcin Jurkowski <marcin1j@gmail.com> | 2019-12-09 15:58:30 +0100 |
---|---|---|
committer | Marcin Jurkowski <marcin1j@gmail.com> | 2020-10-08 16:57:00 +0200 |
commit | 19794e9af859b07911a057abf920aa763eb302d1 (patch) | |
tree | ddaeb045909d9da8bc40113935a3d5ad5e11bdd8 /net/mbusd/Makefile | |
parent | d6689e7fad13d8c840c69fb64be995987d39c21f (diff) |
mbusd: add mbusd
Mbusd is open-source Modbus TCP to Modbus RTU (RS-232/485) gateway.
Signed-off-by: Marcin Jurkowski <marcin1j@gmail.com>
Diffstat (limited to 'net/mbusd/Makefile')
-rw-r--r-- | net/mbusd/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net/mbusd/Makefile b/net/mbusd/Makefile new file mode 100644 index 000000000..72e4ca620 --- /dev/null +++ b/net/mbusd/Makefile @@ -0,0 +1,46 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=mbusd +PKG_VERSION:=0.4.0 +PKG_RELEASE:=1 + +PKG_SOURCE_URL:=https://codeload.github.com/3cky/mbusd/tar.gz/v$(PKG_VERSION)? +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_HASH:=8458afc455a28c8f798cadd3982f9e03496a494a2269e31e8255a6ca273a6898 + +PKG_LICENSE:=BSD-3-Clause +PKG_LICENSE_FILES:=LICENSE + +PKG_MAINTAINER:=Marcin Jurkowski <marcin1j@gmail.com> + +PKG_BUILD_PARALLEL:=1 +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/mbusd + SECTION:=net + CATEGORY:=Network + TITLE:=Modbus TCP gateway + URL:=https://github.com/3cky/mbusd +endef + +define Package/mbusd/description +Mbusd is open-source Modbus TCP to Modbus RTU (RS-232/485) gateway. +It presents a network of RTU slaves as single TCP slave. + +That is a TCP-Slave (or server) which acts as a RTU-master to get +data from Modbus RTU-slave devices. +endef + +define Package/mbusd/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mbusd $(1)/usr/bin + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_DATA) ./files/mbusd.conf $(1)/etc/config/mbusd + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/mbusd.init $(1)/etc/init.d/mbusd +endef + +$(eval $(call BuildPackage,mbusd)) |