6409d34156
Permute is a simple program to read lines from standard input and generate all possible permutations of those lines. WWW: http://pigseye.kennesaw.edu/~rbentley/ PR: ports/85865 Submitted by: Erik Greenwald <erik@smluc.org>
23 lines
470 B
Makefile
23 lines
470 B
Makefile
# New ports collection makefile for: permute
|
|
# Date created: Wed Aug 07 2005
|
|
# Whom: erik@smluc.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= permute
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://pigseye.kennesaw.edu/~rbentley/
|
|
|
|
MAINTAINER= erik@smluc.org
|
|
COMMENT= Generate all permutations of lines from stdin
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|