mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
35 lines
832 B
Bash
35 lines
832 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Robot Raconteur C++ Companion Library"
|
|
HOMEPAGE="https://github.com/robotraconteur/robotraconteur_companion"
|
|
SRC_URI="https://github.com/robotraconteur/robotraconteur_companion/releases/download/v${PV}/RobotRaconteurCompanion-${PV}-Source.tar.gz"
|
|
|
|
S="${WORKDIR}/RobotRaconteurCompanion-${PV}-Source"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
DEPEND="dev-libs/boost:=
|
|
dev-libs/openssl
|
|
dev-cpp/yaml-cpp:=
|
|
dev-cpp/eigen
|
|
dev-cpp/robotraconteur
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
-DBUILD_TESTING=OFF
|
|
-DBUILD_DOCUMENTATION=OFF
|
|
-DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON
|
|
)
|
|
cmake_src_configure
|
|
}
|