mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
28 lines
515 B
Makefile
28 lines
515 B
Makefile
COMMENT= small RSA key management package
|
|
|
|
V= 3.2.6
|
|
PKGNAME= easy-rsa-${V}
|
|
DISTNAME= EasyRSA-${V}
|
|
EXTRACT_SUFX= .tgz
|
|
CATEGORIES= security
|
|
|
|
HOMEPAGE= https://openvpn.net/
|
|
|
|
# GPLv2 only
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
SITES= https://github.com/OpenVPN/easy-rsa/releases/download/v${V}/
|
|
|
|
NO_BUILD= Yes
|
|
NO_TEST= Yes
|
|
|
|
I= ${PREFIX}/share/easy-rsa
|
|
|
|
do-install:
|
|
sed -i s,/usr/local,${LOCALBASE},g ${WRKSRC}/easyrsa
|
|
${INSTALL_DATA_DIR} $I
|
|
cd ${WRKSRC}; pax -rw * $I
|
|
chown -R ${SHAREOWN}:${SHAREGRP} $I/*
|
|
|
|
.include <bsd.port.mk>
|