mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
The unused & unbuilt "inspector" app has an outdated CMakeLists.txt. Instead of patching an unmaintained subproject just skip the cmake compatibility check. Closes: https://bugs.gentoo.org/957461 Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com> Part-of: https://github.com/gentoo/gentoo/pull/42491 Signed-off-by: Sam James <sam@gentoo.org>
24 lines
593 B
Bash
24 lines
593 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Header-only C++ library for JSON Schema validation"
|
|
HOMEPAGE="https://github.com/tristanpenman/valijson"
|
|
SRC_URI="https://github.com/tristanpenman/valijson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2 Boost-1.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
RESTRICT="test"
|
|
|
|
# unused inspector/CMakeLists.txt (bug #957461)
|
|
CMAKE_QA_COMPAT_SKIP=1
|
|
|
|
src_install() {
|
|
# there is no target for installing headers, so do it manually
|
|
doheader -r include/*
|
|
}
|