2013-12-20 21:25:33 +08:00
|
|
|
# Part of the X.org group
|
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
2010-06-24 07:30:37 +08:00
|
|
|
|
2017-04-10 05:10:29 +08:00
|
|
|
source ../xorg.conf
|
|
|
|
|
2010-06-24 07:30:37 +08:00
|
|
|
pkgname=xf86-video-nouveau
|
2017-09-26 05:10:15 +08:00
|
|
|
pkgver=1.0.15
|
2015-12-21 04:07:06 +08:00
|
|
|
pkgrel=1
|
2014-10-26 14:18:59 +08:00
|
|
|
pkgdesc="Open Source 2D acceleration driver for nVidia cards"
|
2015-11-17 05:11:40 +08:00
|
|
|
arch=('x86_64')
|
2012-07-13 09:18:20 +08:00
|
|
|
url="http://nouveau.freedesktop.org/"
|
2014-10-26 14:18:59 +08:00
|
|
|
license=('GPL')
|
|
|
|
depends=('libdrm' 'systemd' 'mesa-dri')
|
2017-04-10 05:10:29 +08:00
|
|
|
makedepends=('xorg-server-devel' "X-ABI-VIDEODRV_VERSION=${X_ABI_VIDEODRV_VERSION}")
|
|
|
|
conflicts=('xorg-server<1.16' "X-ABI-VIDEODRV_VERSION<${X_ABI_VIDEODRV_MAJOR}" "X-ABI-VIDEODRV_VERSION>=$((X_ABI_VIDEODRV_MAJOR+1))")
|
2014-10-26 14:18:59 +08:00
|
|
|
groups=('xorg-drivers' 'xorg')
|
|
|
|
install=$pkgname.install
|
|
|
|
source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2)
|
2017-09-26 05:10:15 +08:00
|
|
|
sha256sums=('aede10fd395610a328697adca3434fb14e9afbd79911d6c8545cfa2c0e541d4c')
|
2010-06-24 07:30:37 +08:00
|
|
|
|
|
|
|
build() {
|
2014-10-26 14:18:59 +08:00
|
|
|
cd $pkgname-$pkgver
|
2012-07-13 09:18:20 +08:00
|
|
|
./configure --prefix=/usr
|
2011-05-06 00:19:34 +08:00
|
|
|
make
|
2010-08-30 06:33:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-10-26 14:18:59 +08:00
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
2010-06-24 07:30:37 +08:00
|
|
|
}
|