summaryrefslogtreecommitdiff
path: root/devel/jwt-cpp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devel/jwt-cpp/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/jwt-cpp/Makefile b/devel/jwt-cpp/Makefile
new file mode 100644
index 000000000000..0a0b8efc6ef8
--- /dev/null
+++ b/devel/jwt-cpp/Makefile
@@ -0,0 +1,28 @@
+PORTNAME= jwt-cpp
+DISTVERSIONPREFIX= v
+DISTVERSION= 0.7.1
+CATEGORIES= devel
+
+MAINTAINER= kiwi@FreeBSD.org
+COMMENT= C++ library for jwt
+WWW= https://thalhammer.github.io/jwt-cpp/
+
+LICENSE= MIT
+
+BUILD_DEPENDS= nlohmann-json>=3.11:devel/nlohmann-json
+
+USES= cmake pkgconfig
+
+USE_GITHUB= yes
+GH_ACCOUNT= Thalhammer
+
+CMAKE_ON= JWT_ENABLE_COVERAGE \
+ JWT_ENABLE_FUZZING \
+ JWT_EXTERNAL_NLOHMANN_JSON
+
+CMAKE_OFF= JWT_BUILD_EXAMPLES \
+ JWT_BUILD_TESTS \
+ JWT_BUILD_DOCS \
+ JWT_EXTERNAL_PICOJSON
+
+.include <bsd.port.mk>