f0508af695
libgraphqlparser is a parser for GraphQL, a query language for describing data requirements on complex application data models, implemented in C++11. It can be used on its own in C++ code (or in C code via the pure C API defined in the c subdirectory), or you can use it as the basis for an extension module for your favorite programming language instead of writing your own parser from scratch. WWW: https://github.com/graphql/libgraphqlparser
21 lines
393 B
Makefile
21 lines
393 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libgraphqlparser
|
|
PORTVERSION= 0.7.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
#MASTER_SITES=
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= GraphQL query parser
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= bison cmake compiler:c++11-lang python:3.6+,build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= graphql
|
|
|
|
.include <bsd.port.mk>
|