summaryrefslogtreecommitdiff
path: root/dev-libs/sexp/sexp-0.8.5.ebuild
blob: deb3e7707c3ecedc6e0eec9b77fa24628c470dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="S-expressions parser and generator library in C++"
HOMEPAGE="https://github.com/rnpgp/sexp"
SRC_URI="https://github.com/rnpgp/sexp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc64 x86"
IUSE="cli test"

BDEPEND="virtual/pkgconfig
	test? ( dev-cpp/gtest )"

RESTRICT="!test? ( test )"

src_configure() {
	local mycmakeargs=(
		-DBUILD_SHARED_LIBS=on

		-DDOWNLOAD_GTEST=off

		-DWITH_COVERAGE=off
		-DWITH_SANITIZERS=off
		-DWITH_SEXP_CLI=$(usex cli on off)
		-DWITH_SEXP_TESTS=$(usex test on off)
	)

	cmake_src_configure
}