gentoo-ebuilds/dev-build/ignition-cmake/ignition-cmake-2.17.0.ebuild
Michał Górny fef0597c76
Move {dev-util → dev-build}/ignition-cmake
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2024-01-14 20:23:13 +01:00

24 lines
571 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="CMake modules to be used by the Ignition projects"
HOMEPAGE="https://github.com/ignitionrobotics/ign-cmake"
SRC_URI="https://osrf-distributions.s3.amazonaws.com/ign-cmake/releases/${PN}2-${PV}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="2"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
PATCHES=( "${FILESDIR}/protobuf.patch" )
src_configure() {
local mycmakeargs=(
"-DBUILD_TESTING=$(usex test)"
)
cmake_src_configure
}