Files
gentoo/dev-libs/rocm-core/rocm-core-7.1.0.ebuild
Patrick Lauer afcec2ec2a dev-libs/rocm-core: add 7.1.0
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
2025-11-09 09:07:08 +00:00

29 lines
709 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Library that provides ROCm release version and install path information"
HOMEPAGE="https://github.com/ROCm/rocm-systems/tree/develop/projects/rocm-core"
SRC_URI="https://github.com/ROCm/rocm-core/archive/refs/tags/rocm-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/rocm-core-rocm-${PV}"
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64"
src_configure() {
local mycmakeargs=( -DROCM_VERSION=${PV} )
cmake_src_configure
}
src_install() {
cmake_src_install
# too broad for standard directory
rm "${ED}"/usr/.info/version || die
}
RDEPEND="!<dev-util/hip-7.0"