mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
fae188751b
Approved by: portmgr (implicit)
24 lines
567 B
Makefile
24 lines
567 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= stdiff
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
|
|
|
|
MAINTAINER= araujo@FreeBSD.org
|
|
COMMENT= Spot The Difference is a file integrity checker
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= *
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
$(INSTALL_MAN) ${WRKSRC}/INSTALL.txt ${STAGEDIR}/${DOCSDIR}/
|
|
$(INSTALL_MAN) ${WRKSRC}/LICENSE.txt ${STAGEDIR}/${DOCSDIR}/
|
|
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}/)
|
|
.include <bsd.port.mk>
|