Date: Tuesday, August 23, 2022 @ 21:52:20
Author: svenstaro
Revision: 1275955
archrelease: copy trunk to community-staging-x86_64
Added:
cudnn/repos/community-staging-x86_64/
cudnn/repos/community-staging-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
(from rev 1275954, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
cudnn/repos/community-staging-x86_64/PKGBUILD
(from rev 1275954, cudnn/trunk/PKGBUILD)
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied:
cudnn/repos/community-staging-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
(from rev 1275954, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
===================================================================
(Binary files differ)
Copied: cudnn/repos/community-staging-x86_64/PKGBUILD (from rev 1275954,
cudnn/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-08-23 21:52:20 UTC (rev 1275955)
@@ -0,0 +1,49 @@
+# Maintainer: Sven-Hendrik Haase <[email protected]>
+# Contributor: Adria Arrufat <adria.arrufat AT protonmail+aur DOT com>
+# Contributor: Sami B. <[email protected]>
+# Contributor: Yunhui Fu <[email protected]>
+
+pkgname=cudnn
+pkgver=8.5.0.96
+_pkgver=8.5.0
+_cudaver=11.7
+_majorver=8
+_archive="cudnn-linux-x86_64-${pkgver}_cuda11-archive.tar.xz"
+pkgrel=1
+pkgdesc="NVIDIA CUDA Deep Neural Network library"
+arch=('x86_64')
+url="https://developer.nvidia.com/cuDNN"
+license=('custom')
+depends=('cuda>='"${_cudaver}")
+options=(!strip staticlibs)
+# To figure out these URLs, check out the Dockerfiles at
+# https://gitlab.com/nvidia/container-images/cuda/-/tree/master/dist for the
appropriate cuda version
+# or make an NVIDIA Developer account.
+# Alternatively, check
https://github.com/pytorch/builder/blob/master/common/install_cuda.sh
+# or
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/
+source=("https://developer.download.nvidia.com/compute/redist/cudnn/v${_pkgver}/local_installers/${_cudaver}/${_archive}"
+ "NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
+sha512sums=('b206b9871b0d877005bd0ee91d8f661776c493e8464e3ce9ebf605e49a4bc759b00eccf078b31519fb8697a3f4a2082731cb88c5f5a6c3649c05f562b271a1cb'
+
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
+noextract=("${_archive}")
+
+package() {
+ mkdir -p "${pkgdir}"/usr/share/licenses/
+ tar xf "${_archive}" --strip-components 1 -C "${pkgdir}/usr"
+
+ find "${pkgdir}/usr/lib" -type f \( -iname "*.a" -or -iname "*.a.*" \)
-print0 | while read -rd $'\0' _so_file; do
+ # make sure static libraries have proper permissions
+ chmod 644 "${_so_file}"
+ done
+
+ install -Dm644 \
+ "${srcdir}"/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf \
+
"${pkgdir}"/usr/share/licenses/"${pkgname}"/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
+
+ mv "${pkgdir}"/usr/LICENSE
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+
+ # fix permissions
+ chown -R root:root "${pkgdir}"/*
+}
+
+# vim: ts=2 sw=2 ft=sh syn=sh et