dev-libs/zug: drop 0.1.1

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2024-08-01 16:50:58 +02:00
parent 92287f25ea
commit 3c4e56973f

View File

@@ -1,39 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Transducers for C++"
HOMEPAGE="https://sinusoid.es/zug/"
SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Boost-1.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
test? ( <dev-cpp/catch-3:0 )
"
src_configure() {
local mycmakeargs=(
-DCCACHE=no
-Dzug_BUILD_DOCS=OFF # Recheck if documentation is in a better state when bumping
-Dzug_BUILD_EXAMPLES=OFF
-Dzug_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
if use test; then
cmake_build tests
fi
}