forked from Lainports/freebsd-ports
commands like mv, tren is particularly well suited for renaming batches of files and/or directories with a single command line invocation. tren eliminates the tedium of having to script simpler tools to provide higher-level renaming capabilities. WWW: http://www.tundraware.com/Software/tren/ PR: ports/146000 Submitted by: Tim Daneliuk <tren@tundraware.com> Approved by: pgj (mentor)
29 lines
620 B
Makefile
29 lines
620 B
Makefile
# New ports collection makefile for: tren
|
|
# Date created: 23 April 2010
|
|
# Whom: Tim Daneliuk <tren@tundraware.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tren
|
|
PORTVERSION= 1.217
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= http://www.tundraware.com/Software/tren/
|
|
|
|
MAINTAINER= tren@tundraware.com
|
|
COMMENT= A Powerful File And Directory Batch Renaming Tool
|
|
|
|
USE_PYTHON= yes
|
|
|
|
MAN1= tren.1
|
|
MANCOMPRESSED= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in WHATSNEW.txt tren-license.txt tren.html tren.pdf tren.ps tren.rst
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|