blob: 01ce988925f63e88bb0a6adf2e429e6c1630949b (
plain)
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
|
# Created by: Timothy Beyer <beyert@cs.ucr.edu>
# $FreeBSD$
PORTNAME= doh-proxy
DISTVERSION= 0.1.21
PORTREVISION= 1
CATEGORIES= dns
MAINTAINER= mat@FreeBSD.org
COMMENT= DNS-over-HTTP server proxy
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= jedisct1
GH_PROJECT= rust-doh
PLIST_FILES= bin/doh-proxy
# make cargo-crates > Makefile.crates
.include "Makefile.crates"
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/doh-proxy
.include <bsd.port.mk>
|