diff options
| author | Alexey Sokolov <alexey+gentoo@asokolov.org> | 2025-09-18 22:59:16 +0100 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2025-09-18 23:55:40 +0100 |
| commit | beea7c40d5a09fbb999834cc9b4de629593c6847 (patch) | |
| tree | d249cddc04677a83b622816f1dd18714c1af3e9b /dev-cpp/jsoncons/jsoncons-1.4.1.ebuild | |
| parent | ff4f3a9931b8488ca05e493408dcb047a3eb0b19 (diff) | |
| download | gentoo-beea7c40d5a09fbb999834cc9b4de629593c6847.tar.gz gentoo-beea7c40d5a09fbb999834cc9b4de629593c6847.tar.bz2 gentoo-beea7c40d5a09fbb999834cc9b4de629593c6847.zip | |
dev-cpp/jsoncons: add 1.4.1
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/43843
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/jsoncons/jsoncons-1.4.1.ebuild')
| -rw-r--r-- | dev-cpp/jsoncons/jsoncons-1.4.1.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild b/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild new file mode 100644 index 000000000000..79fff7668853 --- /dev/null +++ b/dev-cpp/jsoncons/jsoncons-1.4.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="C++ header-only library for JSON and JSON-like data formats" +HOMEPAGE="https://danielaparker.github.io/jsoncons/ https://github.com/danielaparker/jsoncons" +SRC_URI="https://github.com/danielaparker/jsoncons/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS=( doc ) + +# uses modified version of catch.hpp, doesn't work with upstream catch2 + +src_configure() { + local mycmakeargs=( + -DJSONCONS_BUILD_TESTS=$(usex test) + ) + cmake_src_configure +} |
