lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 4a0e4a8e51670bf14075abaaffd7a89f61599297
parent 23f4080a58ca035d45d1cece79389387c709c7af
Author: sbyx <steven@midlink.org>
Date:   Sat, 19 Jul 2014 12:55:42 +0200

Merge pull request #104 from stblassitude/master

Add Serial Console, a compact serial access program.
Diffstat:
Autils/serialconsole/Makefile | 40++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+), 0 deletions(-)

diff --git a/utils/serialconsole/Makefile b/utils/serialconsole/Makefile @@ -0,0 +1,40 @@ +# +# Copyright (C) 2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=sc +PKG_VERSION:=0.95 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/serialconsole/sc +PKG_MD5SUM:=4fe58576a5bddb9f1fb3dcfc6410b885 +PKG_MAINTAINER:=Stefan Bethke <stb@lassitu.de> + +PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/serialconsole + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Serial Console - minimal terminal program + URL:=http://sourceforge.net/projects/serialconsole/ +endef + +define Package/serialconsole/description +serialconsole (sc) is a minimal terminal program allowing to use one machine +to access the serial console of another machine. +endef + +define Package/serialconsole/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/sc $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,serialconsole))