2019-10-15 04:08:30 +08:00
|
|
|
# Maintainer: Jerry Xiao <aur@mail.jerryxiao.cc>
|
|
|
|
# Maintainer: graysky <graysky AT archlinux DOT us>
|
|
|
|
# Contributor: Giancarlo Razzolini <grazzolini@archlinux.org>
|
|
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
2019-06-07 18:24:37 +08:00
|
|
|
|
|
|
|
pkgbase=nvidia-340xx
|
|
|
|
pkgname=(nvidia-340xx nvidia-340xx-dkms)
|
2019-12-25 19:29:12 +08:00
|
|
|
pkgver=340.108
|
2020-06-12 01:13:17 +08:00
|
|
|
pkgrel=8
|
2019-06-07 18:24:37 +08:00
|
|
|
pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
|
|
|
|
arch=('x86_64')
|
2019-10-15 04:08:30 +08:00
|
|
|
url="https://www.nvidia.com/"
|
2020-02-05 05:36:55 +08:00
|
|
|
makedepends=("nvidia-340xx-utils=${pkgver}" 'linux>=5.5' 'linux-headers>=5.5')
|
2019-06-07 18:24:37 +08:00
|
|
|
conflicts=('nvidia')
|
|
|
|
license=('custom')
|
2019-10-15 04:08:30 +08:00
|
|
|
options=(!strip)
|
|
|
|
source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run"
|
2020-06-12 01:13:17 +08:00
|
|
|
kernel-5.7.patch::https://gitlab.manjaro.org/packages/extra/linux57-extramodules/nvidia-340xx/-/raw/master/kernel-5.7.patch?inline=false
|
2019-10-15 04:08:30 +08:00
|
|
|
)
|
2019-12-25 19:29:12 +08:00
|
|
|
sha256sums=('995d44fef587ff5284497a47a95d71adbee0c13020d615e940ac928f180f5b77'
|
2020-06-12 01:13:17 +08:00
|
|
|
'c5f4e2d8840bef97b077da2ed05340a047a8ec420feab6153f7a59e0c547f877')
|
2019-06-07 18:24:37 +08:00
|
|
|
_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
|
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
# default is 'linux' substitute custom name here
|
|
|
|
_kernelname=linux
|
|
|
|
_kernver="$(</usr/src/$_kernelname/version)"
|
|
|
|
_extradir="/usr/lib/modules/$_kernver/extramodules"
|
|
|
|
|
2019-06-07 18:24:37 +08:00
|
|
|
prepare() {
|
2019-10-15 04:08:30 +08:00
|
|
|
sh "${_pkg}.run" --extract-only
|
|
|
|
cd "${_pkg}"
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2020-06-12 01:13:17 +08:00
|
|
|
# seems manjaro is keeping this current
|
|
|
|
# https://gitlab.manjaro.org/packages?utf8=%E2%9C%93&filter=nvidia-340xx
|
|
|
|
(patch -p1 --no-backup-if-mismatch -i "$srcdir"/kernel-5.7.patch)
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
cp -a kernel kernel-dkms
|
2019-06-07 18:24:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2019-10-15 04:08:30 +08:00
|
|
|
cd "${_pkg}/kernel"
|
|
|
|
make SYSSRC="/usr/src/$_kernelname" module
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
cd uvm
|
|
|
|
make SYSSRC="/usr/src/$_kernelname" module
|
2019-06-07 18:24:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package_nvidia-340xx() {
|
2019-10-15 04:08:30 +08:00
|
|
|
pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
|
2019-10-23 05:07:39 +08:00
|
|
|
depends=('linux>=5.3.6' "nvidia-340xx-utils=$pkgver" 'libgl')
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
install -Dt "${pkgdir}${_extradir}" -m644 \
|
|
|
|
"${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
|
2019-06-07 18:24:37 +08:00
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
echo "blacklist nouveau" |
|
2019-10-23 05:07:39 +08:00
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia-340xx.conf"
|
2019-06-07 18:24:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package_nvidia-340xx-dkms() {
|
|
|
|
pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
|
|
|
|
depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
|
2019-10-15 04:08:30 +08:00
|
|
|
optdepends=('linux-headers: Build the module for Arch kernel')
|
2019-06-07 18:24:37 +08:00
|
|
|
provides=("nvidia-340xx=$pkgver")
|
|
|
|
conflicts+=('nvidia-340xx')
|
|
|
|
|
2019-10-15 04:08:30 +08:00
|
|
|
cd "${_pkg}"
|
2019-06-07 18:24:37 +08:00
|
|
|
|
|
|
|
install -dm 755 "${pkgdir}"/usr/src
|
|
|
|
cp -dr --no-preserve='ownership' kernel-dkms "${pkgdir}/usr/src/nvidia-${pkgver}"
|
|
|
|
cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> "${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
|
|
|
|
|
|
|
|
echo "blacklist nouveau" |
|
|
|
|
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
|
|
|
|
}
|
2019-10-15 04:08:30 +08:00
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|