mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
46 lines
1.7 KiB
Bash
46 lines
1.7 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
_kernver=`pacman -Q kernel26 | cut -c10-15 | sed 's/kernel26 //g'`-CHAKRA
|
|
|
|
pkgname=nvidia-173xx
|
|
pkgver=173.14.30
|
|
pkgrel=2
|
|
# Find the kernel name inside the chroot
|
|
|
|
pkgdesc="NVIDIA drivers for kernel26, 173xx branch."
|
|
arch=('i686' 'x86_64')
|
|
[ "$CARCH" = "i686" ] && ARCH=x86
|
|
[ "$CARCH" = "x86_64" ] && ARCH=x86_64
|
|
url="http://www.nvidia.com/"
|
|
depends=('kernel26>=2.6.39' 'kernel26<2.6.40' 'nvidia-173xx-utils')
|
|
makedepends=('kernel26-headers')
|
|
conflicts=('nvidia-96xx' 'nvidia' 'nvidia-173xx')
|
|
license=('custom')
|
|
install=nvidia.install
|
|
source=("http://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run")
|
|
md5sums=('665f9f730c18ab24a997e0e14b863262')
|
|
[ "$CARCH" = "x86_64" ] && md5sums=('8c47463ae14a2f742d0fa00160456745')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
|
|
cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
|
|
cd usr/src/nv/
|
|
ln -s Makefile.kbuild Makefile
|
|
make SYSSRC=/lib/modules/${_kernver}/build module || return 1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/NVIDIA-Linux-$ARCH-${pkgver}-pkg0/usr/src/nv/
|
|
mkdir -p $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
|
|
install -m644 nvidia.ko $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
|
|
mkdir -p $pkgdir/etc/modprobe.d
|
|
echo "blacklist nouveau" >> $pkgdir/etc/modprobe.d/nouveau_blacklist.conf || return 1
|
|
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/nvidia.install
|
|
}
|
|
|