shuffle, as its name implies, shuffles the lines of its input (either
standard input, or the named files) into random order. It is in a sense the very inverse of sort(1)). WWW: http://www.eskimo.com/~scs/src/#shuffle PR: ports/124100 Submitted by: Greg Larkin <glarkin at sourcehosting.net>
This commit is contained in:
parent
916433b491
commit
07d5e942db
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=215377
4 changed files with 34 additions and 0 deletions
|
@ -151,6 +151,7 @@
|
|||
SUBDIR += ffe
|
||||
SUBDIR += fi-aspell
|
||||
SUBDIR += filepp
|
||||
SUBDIR += fileshuffle
|
||||
SUBDIR += fist
|
||||
SUBDIR += fixrtf
|
||||
SUBDIR += fldiff
|
||||
|
|
25
textproc/fileshuffle/Makefile
Normal file
25
textproc/fileshuffle/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: fileshuffle
|
||||
# Date created: 2008-05-29
|
||||
# Whom: Greg Larkin <glarkin@sourcehosting.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= fileshuffle
|
||||
PORTVERSION= 0.1
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= ftp://ftp.eskimo.com/u/s/scs/src/
|
||||
DISTNAME= shuffle
|
||||
|
||||
MAINTAINER= glarkin@sourcehosting.net
|
||||
COMMENT= A filter for shuffling lines in a text file into random order
|
||||
|
||||
MANPAGE= shuffle.1
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
MAN1= ${PORTNAME}.1
|
||||
|
||||
do-install:
|
||||
@${CP} ${WRKSRC}/shuffle ${PREFIX}/bin/${PORTNAME}
|
||||
@${CP} ${WRKSRC}/${MANPAGE} ${PREFIX}/man/man1/${PORTNAME}.1
|
||||
.include <bsd.port.mk>
|
3
textproc/fileshuffle/distinfo
Normal file
3
textproc/fileshuffle/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (shuffle.tar.gz) = 22b271c58d0abd618260a06ff45786d2
|
||||
SHA256 (shuffle.tar.gz) = f9eab7047cea96daccccfae6453dacec1696a5a25f76e1e059364239958c05ae
|
||||
SIZE (shuffle.tar.gz) = 16780
|
5
textproc/fileshuffle/pkg-descr
Normal file
5
textproc/fileshuffle/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
shuffle, as its name implies, shuffles the lines of its input (either
|
||||
standard input, or the named files) into random order. It is in a
|
||||
sense the very inverse of sort(1)).
|
||||
|
||||
WWW: http://www.eskimo.com/~scs/src/#shuffle
|
Loading…
Reference in a new issue