Files
gentoo/dev-cpp/ut2-glaze/ut2-glaze-1.2.1.ebuild
Adel KARA SLIMANE a84edd513d dev-cpp/ut2-glaze: add 1.2.1
Signed-off-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
Part-of: https://github.com/gentoo/gentoo/pull/46358
Signed-off-by: Sam James <sam@gentoo.org>
2026-09-16 00:48:43 +01:00

28 lines
639 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# it's a header-only lib, thus not cmake-multilib. However, examples and tests...
inherit cmake
DESCRIPTION="Stripped down fork of boost-ext ut2"
HOMEPAGE="https://github.com/openalgz/ut"
SRC_URI="https://github.com/openalgz/ut/archive/refs/tags/v${PV}.tar.gz -> ut2-openalgz-${PV}.tar.gz"
S="${WORKDIR}/ut-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64"
IUSE="test"
RESTRICT="!test? ( test )"
src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_INSTALL_RULES=OFF
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
}