mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 03:54:36 +08:00
30 lines
940 B
Bash
30 lines
940 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# contributor: abveritas@chakra-project.org
|
|
|
|
pkgname=xf86-video-nouveau
|
|
pkgver=1.0.10
|
|
pkgrel=1
|
|
pkgdesc="Open Source 3D acceleration driver for nVidia cards"
|
|
arch=('x86_64')
|
|
url="http://nouveau.freedesktop.org/"
|
|
license=('GPL') #and MIT, not yet a license file, see http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
|
|
depends=('libdrm' 'systemd' 'mesa')
|
|
makedepends=('xorg-server' 'xf86driproto' 'resourceproto' 'scrnsaverproto')
|
|
conflicts=('xorg-server<1.12.3')
|
|
options=('!libtool') # 'force')
|
|
install=${pkgname}.install
|
|
source=("http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('44fd65897630fdd19c086133cc1bd679')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
make DESTDIR=${pkgdir} install
|
|
}
|