blob: 446fb184ca1b99ac9685b7318762da05b46cc6d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $FreeBSD$
PORTNAME= libsodium
PORTVERSION= 0.4.2
CATEGORIES= security
MASTER_SITES= http://download.dnscrypt.org/libsodium/releases/
MAINTAINER= csosstudy@gmail.com
COMMENT= Library to build higher-level cryptographic tools
LICENSE= ISCL
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
PORTDOCS= AUTHORS NEWS THANKS
NO_STAGE= yes
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>
|