22 lines
474 B
Plaintext
22 lines
474 B
Plaintext
# Description: Nouveau graphics video driver
|
|
# URL: https://nouveau.freedesktop.org/wiki/
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-server
|
|
|
|
name=xorg-xf86-video-nouveau
|
|
version=1.0.17
|
|
release=2
|
|
source=(https://www.x.org/archive/individual/driver/xf86-video-nouveau-$version.tar.bz2
|
|
xorg-abi.patch)
|
|
|
|
build() {
|
|
cd xf86-video-nouveau-$version
|
|
|
|
patch -p1 -i $SRC/xorg-abi.patch
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|