diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2014-09-24 21:56:25 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2014-09-24 21:56:25 +0800 |
commit | 958f78c3b8b9f93378c64808d61e4fcccd453d6a (patch) | |
tree | b2c8cb9c8fc3d1fbd16fe4382e900940c2a475c1 /misc | |
parent | 13413445c3ac1c59a9601147a875e0a7be06e470 (diff) | |
download | freebsd-ports-gnome-958f78c3b8b9f93378c64808d61e4fcccd453d6a.tar.gz freebsd-ports-gnome-958f78c3b8b9f93378c64808d61e4fcccd453d6a.tar.zst freebsd-ports-gnome-958f78c3b8b9f93378c64808d61e4fcccd453d6a.zip |
colwide is a Perl script which displays either 80 or specified number of hash
(#) characters on the screen. Can be useful to determine terminal width.
WWW: http://www.neelc.org/software/colwide/
PR: 193466
Submitted by: neel@neelc.org
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/colwide/Makefile | 30 | ||||
-rw-r--r-- | misc/colwide/distinfo | 2 | ||||
-rw-r--r-- | misc/colwide/pkg-descr | 4 |
4 files changed, 37 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 87c7c2e69f75..f1b3df3b8d08 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -38,6 +38,7 @@ SUBDIR += clpbar SUBDIR += cmatrix SUBDIR += colortail + SUBDIR += colwide SUBDIR += compat10x SUBDIR += compat4x SUBDIR += compat5x diff --git a/misc/colwide/Makefile b/misc/colwide/Makefile new file mode 100644 index 000000000000..aaec53f46729 --- /dev/null +++ b/misc/colwide/Makefile @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= colwide +PORTVERSION= 0.01 +CATEGORIES= misc perl5 +MASTER_SITES= http://www.neelc.org/files/colwide/ +EXTRACT_SUFX= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= neel@neelc.org +COMMENT= Utility which outputs a number of characters to the screen + +LICENSE= BSD2CLAUSE + +USES= perl5 shebangfix +USE_PERL5= run +NO_BUILD= yes +NO_WRKSUBDIR= yes + +SHEBANG_FILES= colwide + +PLIST_FILES= bin/${PORTNAME} + +do-extract: + ${CP} ${DISTDIR}/colwide-${PORTVERSION} ${WRKDIR}/colwide + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/colwide ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/misc/colwide/distinfo b/misc/colwide/distinfo new file mode 100644 index 000000000000..bee9c9705c5d --- /dev/null +++ b/misc/colwide/distinfo @@ -0,0 +1,2 @@ +SHA256 (colwide-0.01) = 95c4c693d033331ce688f28a096c29e841bd706847d464f7d6d2c1163bc3c381 +SIZE (colwide-0.01) = 2220 diff --git a/misc/colwide/pkg-descr b/misc/colwide/pkg-descr new file mode 100644 index 000000000000..d55a3174219d --- /dev/null +++ b/misc/colwide/pkg-descr @@ -0,0 +1,4 @@ +colwide is a Perl script which displays either 80 or specified number of hash +(#) characters on the screen. Can be useful to determine terminal width. + +WWW: http://www.neelc.org/software/colwide/ |