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.

40 lines
1013 B

  1. #
  2. # Copyright (C) 2014 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:=sc
  9. PKG_VERSION:=0.95
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=@SF/serialconsole/sc
  13. PKG_MD5SUM:=4fe58576a5bddb9f1fb3dcfc6410b885
  14. PKG_MAINTAINER:=Stefan Bethke <stb@lassitu.de>
  15. PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/serialconsole
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. TITLE:=Serial Console - minimal terminal program
  21. URL:=http://sourceforge.net/projects/serialconsole/
  22. endef
  23. define Package/serialconsole/description
  24. serialconsole (sc) is a minimal terminal program allowing to use one machine
  25. to access the serial console of another machine.
  26. endef
  27. define Package/serialconsole/install
  28. $(INSTALL_DIR) $(1)/usr/bin
  29. $(INSTALL_BIN) $(PKG_BUILD_DIR)/sc $(1)/usr/bin/
  30. endef
  31. $(eval $(call BuildPackage,serialconsole))