2015-01-10 22:15:11 +00:00
|
|
|
#
|
2016-09-22 21:32:03 +00:00
|
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
2015-01-10 22:15:11 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ser2net
|
2019-01-08 22:13:08 +00:00
|
|
|
PKG_VERSION:=3.5.1
|
2020-01-21 11:39:04 +00:00
|
|
|
PKG_RELEASE:=4
|
2015-01-10 22:15:11 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/ser2net
|
2019-01-08 22:13:08 +00:00
|
|
|
PKG_HASH:=02f5dd0abbef5a17b80836b0de1ef0588e257106fb5e269b86822bfd001dc862
|
2015-01-10 22:15:11 +00:00
|
|
|
|
2019-09-02 13:15:08 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
2015-01-10 22:15:11 +00:00
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2016-10-16 19:33:46 +00:00
|
|
|
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
|
2015-01-10 22:15:11 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ser2net
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Serial to Network Proxy
|
2019-05-05 21:30:45 +00:00
|
|
|
URL:=https://sourceforge.net/projects/ser2net/
|
2015-01-10 22:15:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/description
|
|
|
|
This project provides a proxy that allows telnet/tcp connections to be made to
|
|
|
|
serial ports on a machine.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/conffiles
|
|
|
|
/etc/ser2net.conf
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ser2net/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(1)/usr/sbin/
|
|
|
|
|
2015-01-10 22:15:11 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc
|
2018-01-18 21:30:19 +00:00
|
|
|
$(INSTALL_CONF) ./files/ser2net.conf $(1)/etc/
|
2017-12-30 22:30:06 +00:00
|
|
|
|
2017-12-21 09:01:42 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_CONF) ./files/ser2net.config $(1)/etc/config/ser2net
|
|
|
|
|
2017-12-21 09:01:42 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
2017-12-30 22:30:06 +00:00
|
|
|
$(INSTALL_BIN) ./files/ser2net.init $(1)/etc/init.d/ser2net
|
2015-01-10 22:15:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ser2net))
|