2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-02-15 00:10:55 +03:00
Files
gentoo/dev-cpp/simpleini/simpleini-4.25.ebuild
Arthur Zamarin 4dd8f70ece dev-cpp/simpleini: Keyword 4.25 arm64, #967708
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-12-19 11:42:13 +02:00

28 lines
623 B
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ library providing a simple API to read and write INI-style files"
HOMEPAGE="https://github.com/brofield/simpleini/"
SRC_URI="https://github.com/brofield/simpleini/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="test? ( dev-cpp/gtest )"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
-DSIMPLEINI_USE_SYSTEM_GTEST=yes
)
cmake_src_configure
}