guru/dev-cpp/rang/rang-3.2.ebuild
Piotr Kubaj 875c66a5a6
dev-cpp/rang: keyword 3.2 for ~ppc64
Signed-off-by: Piotr Kubaj <pkubaj@anongoth.pl>
2024-03-14 00:18:20 +01:00

49 lines
978 B
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Minimal, header-only, modern C++ library for terminal goodies"
HOMEPAGE="https://agauniyal.github.io/rang/"
SRC_URI="https://github.com/agauniyal/rang/archive/refs/tags/v${PV}.tar.gz
-> ${P}.gh.tar.gz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="~amd64 ~ppc64"
IUSE="test"
RESTRICT="!test? ( test )"
PATCHES="${FILESDIR}/${P}-fix-tests.patch"
BDEPEND="test? ( dev-cpp/doctest )"
src_configure() {
cmake_src_configure
if use test; then
local BUILD_DIR CMAKE_USE_DIR
BUILD_DIR="${WORKDIR}/${P}_test"
CMAKE_USE_DIR="${S}/test"
cmake_src_configure
fi
}
src_compile() {
if use test; then
local BUILD_DIR CMAKE_USE_DIR
BUILD_DIR="${WORKDIR}/${P}_test"
CMAKE_USE_DIR="${S}/test"
cmake_src_compile
fi
}
src_test() {
local BUILD_DIR CMAKE_USE_DIR
BUILD_DIR="${WORKDIR}/${P}_test"
CMAKE_USE_DIR="${S}/test"
cmake_src_test
}