core/xf86-video-nouveau/PKGBUILD

31 lines
917 B
Bash
Raw Normal View History

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
pkgrel=1
pkgdesc="Open Source 2D acceleration driver for nVidia cards"
2015-11-17 05:11:40 +08:00
arch=('x86_64')
url="http://nouveau.freedesktop.org/"
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))")
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() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
2010-06-24 07:30:37 +08:00
}