0562892b35
TOML library for C++ Features * Supports the latest TOML release (v1.0.0), plus optional support for some unreleased TOML features * Supports serializing to JSON * Proper UTF-8 handling (incl. BOM) * C++17 (plus some C++20 features where available, e.g. experimental support for char8_t strings) * Header-only (optional!) * Doesn't require RTTI * Works with or without exceptions
18 lines
445 B
Makefile
18 lines
445 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/12/09 16:28:33 wiz Exp $
|
|
|
|
DISTNAME= tomlplusplus-2.5.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=marzer/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://marzer.github.io/tomlplusplus/
|
|
COMMENT= TOML library for c++
|
|
LICENSE= mit
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
MESON_ARGS+= --datadir=lib
|
|
|
|
.include "../../devel/meson/build.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|