blob: 51f22538b69a53fa4f9cfc8af68fc2efda79c243 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xf86-video-nouveau
#_gitdate=20111010
pkgver=1.0.6
pkgrel=1
pkgdesc="Open-source X.org drivers for nVidia video cards"
url="http://nouveau.freedesktop.org/"
arch="all"
license="MIT"
depends=""
depends_dev=
makedepends="pkgconfig randrproto renderproto videoproto xextproto libdrm-dev
xorg-server-dev util-macros libtool autoconf automake xf86driproto
udev-dev"
install=""
subpackages="$pkgname-doc"
source="http://xorg.freedesktop.org/releases/individual/driver/xf86-video-nouveau-$pkgver.tar.bz2"
_builddir="$srcdir"/xf86-video-nouveau-$pkgver
mksource() {
mkdir /tmp/${pkgname}-${_gitdate}
(cd /tmp/${pkgname}-${_gitdate};
git clone -v --depth 1 git://anongit.freedesktop.org/nouveau/xf86-video-nouveau;
cd xf86-video-nouveau;
git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD | bzip2 > /tmp/${pkgname}-${_gitdate}/${pkgname}-${_gitdate}.tar.bz2)
}
build() {
cd "$_builddir"
export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
./configure --prefix=/usr || return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/xorg/modules/*/*.la || return 1
}
md5sums="140e819c983fc01ed7a52d915dcffd74 xf86-video-nouveau-1.0.6.tar.bz2"
|