mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
See-also: https://github.com/NVIDIA/optix-dev/blob/v8.1.0/LICENSE.txt See-also: https://github.com/NVIDIA/optix-dev/blob/v9.0.0/LICENSE.txt Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42090 Closes: https://github.com/gentoo/gentoo/pull/42090 Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
27 lines
626 B
Bash
27 lines
626 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="NVIDIA Ray Tracing Engine"
|
|
HOMEPAGE="https://developer.nvidia.com/rtx/ray-tracing/optix"
|
|
SRC_URI="
|
|
https://github.com/NVIDIA/optix-dev/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
"
|
|
S="${WORKDIR}/${PN}-dev-${PV}"
|
|
|
|
LICENSE="NVIDIA-SDK-v2017.06.13 BSD"
|
|
SLOT="0/$(ver_cut 1)"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
# TODO license mentions distribution rights
|
|
# check if it fits in BINARY-REDISTRIBUTABLE
|
|
RESTRICT="bindist mirror test"
|
|
|
|
src_install() {
|
|
insinto "/opt/${PN}"
|
|
|
|
doins -r include/
|
|
|
|
dodoc README.md
|
|
}
|