forked from Lainports/freebsd-ports
- Add PORTDOCS and respect DOCS option PR: ports/178173 Submitted by: csosstudy <csosstudy@gmail.com> (maintainer)
29 lines
553 B
Makefile
29 lines
553 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libsodium
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://download.dnscrypt.org/libsodium/releases/
|
|
|
|
MAINTAINER= csosstudy@gmail.com
|
|
COMMENT= Library for build higher-level cryptographic tools
|
|
|
|
LICENSE= ISCL
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= AUTHORS COPYING INSTALL NEWS THANKS
|
|
|
|
post-build:
|
|
cd ${WRKSRC} && ${MAKE} check
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|