23 lines
508 B
Makefile
23 lines
508 B
Makefile
# $NetBSD: Makefile,v 1.44 2018/08/22 09:46:14 wiz Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
PKGNAME= pdflib-${PDFLIB_BASE_VERS}
|
|
PKGREVISION= 22
|
|
COMMENT= C library to produce PDF files
|
|
|
|
BUILD_TARGET= pdflib
|
|
DOCDIR= ${PREFIX}/share/doc/pdflib
|
|
|
|
INSTALLATION_DIRS+= ${DOCDIR}
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc; for file in \
|
|
PDFlib-license.pdf \
|
|
PDFlib-manual.pdf \
|
|
aladdin-license.pdf; \
|
|
do \
|
|
${INSTALL_DATA} $${file} ${DESTDIR}${DOCDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|