pkgsrc/graphics/vtk-docs/Makefile
rillig 4376895e91 graphics/*: remove redundant :Q modifiers
pkgsrc doesn't support PREFIX with spaces or other special characters.
Therefore it is not necessary to add the :Q modifier to this variable
and several others.
2018-01-14 14:58:38 +00:00

22 lines
484 B
Makefile

# $NetBSD: Makefile,v 1.8 2018/01/14 14:58:40 rillig Exp $
#
DISTNAME= VTKDocHtml-4.2
PKGNAME= vtk-docs-4.2
COMMENT= Documentation for VTK (HTML)
WRKSRC= ${WRKDIR}/html
NO_BUILD= yes
HTML_DIR= share/doc/${PKGNAME}
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${HTML_DIR}
${FIND} ${WRKSRC} -type f -print | \
while read f; do \
${INSTALL_DATA} $$f ${DESTDIR}${PREFIX}/${HTML_DIR}; \
done
.include "../../graphics/vtk/Makefile.common"
.include "../../mk/bsd.pkg.mk"