mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
34 lines
694 B
Makefile
34 lines
694 B
Makefile
# Created by: Leo Vandewoestijne <freebsd@dns.company>
|
|
|
|
PORTNAME= flamethrower
|
|
PORTVERSION= 0.11.0
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= pcarboni@gmail.com
|
|
COMMENT= DNS performance and functional testing utility
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libgnutls.so:security/gnutls \
|
|
libnghttp2.so:www/libnghttp2 \
|
|
libuv.so:devel/libuv \
|
|
libldns.so:dns/ldns
|
|
|
|
USES= cmake compiler:c++17-lang pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= DNS-OARC
|
|
|
|
CMAKE_ON= DOH_ENABLE
|
|
PLIST_FILES= bin/flame
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/flame ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-test:
|
|
@cd ${BUILD_WRKSRC} && ${SETENV} ${TEST_ENV} ./tests
|
|
|
|
.include <bsd.port.mk>
|