29 lines
744 B
Bash
29 lines
744 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker
|
|
|
|
CUDA_V='12'
|
|
|
|
DESCRIPTION='NVIDIA Accelerated Deep Learning on GPU library'
|
|
HOMEPAGE='https://developer.nvidia.com/cudnn'
|
|
SRC_URI="https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-${PV}_cuda${CUDA_V}-archive.tar.xz"
|
|
S="${WORKDIR}/cudnn-linux-x86_64-${PV%%_*}_cuda${CUDA_V}-archive"
|
|
|
|
LICENSE='NVIDIA-cuDNN'
|
|
SLOT="0/$(ver_cut 1)"
|
|
KEYWORDS='-* ~amd64 ~amd64-linux'
|
|
RESTRICT='mirror'
|
|
|
|
RDEPEND="=dev-util/nvidia-cuda-toolkit-${CUDA_V}*"
|
|
|
|
QA_PREBUILT='/opt/cuda/targets/x86_64-linux/lib/*'
|
|
|
|
src_install() {
|
|
insinto /opt/cuda/targets/x86_64-linux
|
|
|
|
doins -r include lib
|
|
}
|