forked from Lainports/opnsense-ports
31 lines
566 B
Makefile
31 lines
566 B
Makefile
# Created by: Timothy Beyer <beyert@cs.ucr.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= doh-proxy
|
|
DISTVERSION= 0.1.17
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= mat@FreeBSD.org
|
|
COMMENT= DNS-over-HTTP server proxy
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
# jemalloc-sys-0.1.8 needs gmake
|
|
BUILD_DEPENDS= gmake:devel/gmake
|
|
|
|
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>
|