You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ser2net
  9. PKG_VERSION:=2.10.0
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=@SF/ser2net
  13. PKG_MD5SUM:=cd937041144de83d41d811521e72158c
  14. PKG_LICENSE:=GPL-2.0+
  15. PKG_LICENSE_FILES:=COPYING
  16. PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org>
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/ser2net
  21. SECTION:=net
  22. CATEGORY:=Network
  23. TITLE:=Serial to Network Proxy
  24. URL:=http://sourceforge.net/projects/ser2net/
  25. endef
  26. define Package/ser2net/description
  27. This project provides a proxy that allows telnet/tcp connections to be made to
  28. serial ports on a machine.
  29. endef
  30. define Package/ser2net/conffiles
  31. /etc/ser2net.conf
  32. endef
  33. define Package/ser2net/install
  34. $(INSTALL_DIR) $(1)/usr/sbin
  35. $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ser2net $(1)/usr/sbin/
  36. $(INSTALL_DIR) $(1)/etc
  37. $(INSTALL_CONF) $(PKG_BUILD_DIR)/ser2net.conf $(1)/etc/
  38. endef
  39. $(eval $(call BuildPackage,ser2net))