blob: 425ec7742c701ed3f2df6ebf6e37a28f67f8a0e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/mkpkg
# description: X.org Nouveau (NVIDIA) video driver
# url: https://nouveau.freedesktop.org/
name=x11-xf86-video-nouveau
version=1.0.18
release=1
depends=(x11-server mesa)
source=(https://xorg.freedesktop.org/archive/individual/driver/xf86-video-nouveau-$version.tar.xz)
build() {
cd xf86-video-nouveau-$version
export CFLAGS="$CFLAGS -Wno-implicit-function-declaration"
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|