mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
26b76b179e
- Add LICENSE_FILE - Remove GH_TAGNAME PR: 205700 Submitted by: Corey Smith <corsmith@gmail.com> (maintainer)
32 lines
675 B
Makefile
32 lines
675 B
Makefile
# Created by: Corey Smith <corsmith@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zerotier
|
|
DISTVERSION= 1.1.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= GH
|
|
|
|
MAINTAINER= corsmith@gmail.com
|
|
COMMENT= Network virtualization everywhere
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= gmake
|
|
USE_RC_SUBR= zerotier
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zerotier
|
|
GH_PROJECT= ZeroTierOne
|
|
CFLAGS+= -flax-vector-conversions
|
|
|
|
PLIST_FILES= bin/zerotier-cli bin/zerotier-idtool sbin/zerotier-one
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zerotier-one ${STAGEDIR}${PREFIX}/sbin/
|
|
.for l in zerotier-cli zerotier-idtool
|
|
${LN} -sf ../sbin/zerotier-one ${STAGEDIR}${PREFIX}/bin/${l}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|