diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/picocom |
Initial import
Diffstat (limited to 'package/picocom')
-rw-r--r-- | package/picocom/Config.in | 15 | ||||
-rw-r--r-- | package/picocom/Makefile | 25 | ||||
-rw-r--r-- | package/picocom/ipkg/picocom.control | 4 |
3 files changed, 44 insertions, 0 deletions
diff --git a/package/picocom/Config.in b/package/picocom/Config.in new file mode 100644 index 000000000..be5400182 --- /dev/null +++ b/package/picocom/Config.in @@ -0,0 +1,15 @@ +config ADK_PACKAGE_PICOCOM + prompt "picocom........................... minimal dumb-terminal emulation program" + tristate + default n + help + As its name suggests, picocom is a minimal dumb-terminal emulation + program. It is, in principle, very much like minicom, only it's pico + instead of mini! It was designed to serve as a simple, manual, modem + configuration, testing, and debugging tool. It has also served (quite + well) as a low-tech "terminal-window" to allow operator intervention + in PPP connection scripts. It could also prove useful in many other + similar tasks. + + http://efault.net/npat/hacks/picocom/ + diff --git a/package/picocom/Makefile b/package/picocom/Makefile new file mode 100644 index 000000000..0d2aae07d --- /dev/null +++ b/package/picocom/Makefile @@ -0,0 +1,25 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${TOPDIR}/rules.mk + +PKG_NAME:= picocom +PKG_VERSION:= 1.4 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 08fcc5f6bb9e7676a2569386d5ea9f70 +MASTER_SITES:= http://efault.net/npat/hacks/picocom/dist/ + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,PICOCOM,picocom,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +BUILD_STYLE:= auto +ALL_TARGET:= picocom + +do-install: + ${INSTALL_DIR} ${IDIR_PICOCOM}/usr/bin + ${INSTALL_BIN} ${WRKBUILD}/picocom ${IDIR_PICOCOM}/usr/bin/ + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/picocom/ipkg/picocom.control b/package/picocom/ipkg/picocom.control new file mode 100644 index 000000000..607e947e5 --- /dev/null +++ b/package/picocom/ipkg/picocom.control @@ -0,0 +1,4 @@ +Package: picocom +Priority: optional +Section: console +Description: minimal dumb-terminal emulation program |