updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / libxtrap-git / PKGBUILD
blob9b19e1bd3f96fe9c09afd4b8de613065e823e600
1 #Maintainer: Matt Parnell /ilikenwf <parwok@gmail.com>
3 pkgname=libxtrap-git
4 pkgver=20080808
5 pkgrel=2
6 pkgdesc="X11 event trapping extension library"
7 arch=('i686' 'x86_64')
8 license=('custom')
9 url="http://xorg.freedesktop.org/"
10 depends=('libxext-git' 'libxt' 'trapproto')
11 makedepends=('pkgconfig')
12 options=(!libtool)
13 source=()
14 md5sums=()
15 provides=('libxtrap' 'libxtrap-git')
16 conflicts=('libxtrap')
17 replaces=('libxtrap')
19 _gitroot="git://anongit.freedesktop.org/git/xorg/lib/libXTrap"
20 _gitname="libXTrap"
22 build() {
24  msg "Connecting to git.freedesktop.org GIT server...."
26   if [ -d $startdir/src/$_gitname ] ; then
27   cd $_gitname && git pull origin
28   msg "The local files are updated."
29   else
30   git clone $_gitroot
31   fi
33   msg "GIT checkout done or server timeout"
34   msg "Starting make..."
36 cd $startdir/src/$_gitname
38   sh autogen.sh --prefix=/usr || return 1
39   make || return 1
40   make DESTDIR=${pkgdir} install || return 1