9d9ad4c7cb
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 serial communications program to allow access to all types of devices that provide serial consoles. It could also prove useful in many other similar tasks.
29 lines
753 B
Makefile
29 lines
753 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/02/14 07:54:51 ryoon Exp $
|
|
|
|
DISTNAME= picocom-2.1
|
|
CATEGORIES= comms
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=npat-efault/}
|
|
GITHUB_PROJECT= picocom
|
|
GITHUB_TAG= ${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://github.com/npat-efault/picocom
|
|
COMMENT= Minimal dumb-terminal emulation program
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PC_BINARY= picocom
|
|
PC_SCRIPTS= pcasc pcxm pcym pczm
|
|
PC_MAN= picocom.1
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PC_BINARY} \
|
|
${DESTDIR}${PREFIX}/bin
|
|
.for f in ${PC_SCRIPTS}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/bin
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/${PC_MAN} \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|