24 lines
665 B
Makefile
24 lines
665 B
Makefile
# $NetBSD: Makefile,v 1.2 2021/05/30 00:49:51 khorben Exp $
|
|
|
|
.include "../../security/libpe/Makefile.common"
|
|
|
|
DISTNAME= ${GITHUB_PROJECT}-${PEV_VERSION}
|
|
GITHUB_PROJECT= libpe
|
|
GITHUB_TAG= ce39b127328e3863e08163962f7ecc768eb2555e
|
|
|
|
COMMENT= The PE library used by pev - the PE file toolkit
|
|
LICENSE= gnu-lgpl-v3
|
|
|
|
MAKE_FLAGS+= DESTDIR=${DESTDIR}
|
|
MAKE_FLAGS+= prefix=${PREFIX}
|
|
|
|
INSTALLATION_DIRS= include/libpe
|
|
|
|
post-install:
|
|
for include in ${WRKSRC}/include/libpe/*.h; do \
|
|
${INSTALL_DATA} $${include} ${DESTDIR}${PREFIX}/include/libpe; \
|
|
done
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|