updated on Mon Jan 9 08:00:21 UTC 2012
[aur-mirror.git] / xf86dgaproto-git / PKGBUILD
blob0ce1168aaeaccefa0eef05e8d0d83e881aa7c65f
1 # Maintainer: Det <nimetonmaili at gmail a-dot com>
2 # Based on [extra]'s xf86dgaproto
4 pkgname=xf86dgaproto-git
5 pkgver=20101207
6 pkgrel=1
7 pkgdesc="X11 Direct Graphics Access extension wire protocol (Git version)"
8 arch=(any)
9 url="http://xorg.freedesktop.org/"
10 license=('custom')
11 makedepends=('git')
12 provides=('xf86dgaproto=2.1')
13 conflicts=('xf86dgaproto')
15 _gitroot=git://git.freedesktop.org/git/xorg/proto/${pkgname/-*}
16 _gitname=${pkgname/-*}
18 build() {
19   msg "Connecting to git.freedesktop.org GIT server...."
21   if [ -d ${_gitname} ] ; then
22      cd ${_gitname} && git pull origin && cd ..
23      msg "The local files are updated."
24   else
25      git clone ${_gitroot}
26   fi
28   msg "GIT checkout done or server timeout"
30   msg "Creating build directory"
31   [ -d ${_gitname}-build ] && rm -rf ${_gitname}-build
32   cp -R ${_gitname} ${_gitname}-build
34   msg "Starting make..."
35   cd ${_gitname-build}
36   ./autogen.sh --prefix=/usr
37   make
40 package(){
41   cd ${_gitname-build}
42   make DESTDIR="${pkgdir}" install
43   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname/-*}/COPYING"