mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
42542fb076
fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav)
37 lines
786 B
Makefile
37 lines
786 B
Makefile
# New ports collection makefile for: csvdiff
|
|
# Date created: 2006/07/12
|
|
# Whom: chinsan <chinsan.tw@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= csvdiff
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:S,.,-,g}
|
|
|
|
MAINTAINER= chinsan@FreeBSD.org
|
|
COMMENT= Compare/diff two (comma) seperated files with each other
|
|
|
|
NO_BUILD= yes
|
|
USE_PERL5= yes
|
|
PLIST_FILES= bin/csvdiff
|
|
WRKSRC= ${WRKDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= CHANGES README TODO
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl \
|
|
${PREFIX}/bin/${PORTNAME}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|