mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c43b5cd448
Changes: Some code improvements and additional misspelling detection. PR: ports/185872 Submitted by: wblock (maintainer)
29 lines
639 B
Makefile
29 lines
639 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= igor
|
|
PORTVERSION= 1.419
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://docscripts.glenbarber.us/tags/${PORTNAME}/${PORTVERSION}/
|
|
|
|
MAINTAINER= wblock@FreeBSD.org
|
|
COMMENT= FreeBSD Documentation Project sanity check script
|
|
|
|
LICENSE= BSD
|
|
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|/usr/local|${PREFIX}|' ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|