mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:38:27 +08:00
46 lines
1.8 KiB
Bash
46 lines
1.8 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=xf86-video-nouveau
|
|
_gitdate=20110110
|
|
pkgver=0.0.16_git${_gitdate} # see configure.ac
|
|
pkgrel=2
|
|
pkgdesc="Open Source 3D acceleration driver for nVidia cards (experimental)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://nouveau.freedesktop.org/wiki/"
|
|
license=('GPL') #and MIT, not yet a license file, see http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e
|
|
depends=("nouveau-drm>=0.0.16_${_gitdate}" 'udev' 'libdrm>=2.4.23')
|
|
optdepends=('nouveau-dri: highly experimental gallium3d features')
|
|
makedepends=('pkgconfig' 'xorg-server>=1.9.0' 'mesa>=7.10' 'glproto>=1.4.11' 'xorg-util-macros' 'xf86driproto' 'autoconf' 'nouveau-dri')
|
|
conflicts=('xorg-server<1.9.0')
|
|
options=('!libtool') # 'force'
|
|
install=xf86-video-nouveau.install
|
|
source=(http://chakra-project.org/sources/xf86-video-nouveau/xf86-video-nouveau-${_gitdate}.tar.bz2)
|
|
md5sums=('3103fbf4efab8cb41eefbaf4c5fd49e8')
|
|
|
|
# source PKGBUILD && mksource
|
|
mksource() {
|
|
mkdir -p /tmp/xf86-video-nouveau-${_gitdate}
|
|
pushd /tmp/xf86-video-nouveau-${_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/xf86-video-nouveau-${_gitdate}/xf86-video-nouveau-${_gitdate}.tar.bz2
|
|
popd
|
|
}
|
|
|
|
build() {
|
|
cd ${srcdir}/xf86-video-nouveau-${_gitdate}
|
|
# fix build
|
|
sed -i -e "s~nv04_pushbuf.h~nouveau_pushbuf.h~g" src/*
|
|
./autogen.sh --prefix=/usr || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/xf86-video-nouveau-${_gitdate}
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|