summaryrefslogtreecommitdiff
path: root/~coadde/glproto-git/PKGBUILD
blob: bde7a57a8d098d19999c712eb802d81acb77c874 (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
43
44
45
46
47
48
49
50
51
# $Id$
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Alexander Baldeck <alexander@archlinux.org>
# Maintainer: kfgz <kfgz at interia pl>
# Contributor: Cilyan Olowen <gaknar at gmail dot com>
# Maintainer (Parabola): Márcio Silva <coadde@adinet.com.uy>

pkgname=glproto-git
pkgver=20120612
pkgrel=1
pkgdesc="X11 OpenGL extension wire protocol"
arch=(any)
url="http://xorg.freedesktop.org/"
license=('custom')
provides=('glproto' 'glproto=1.4.15')
makedepends=('xorg-util-macros>=1.2' 'git')
conflicts=('glproto')

_gitroot="git://git.freedesktop.org/git/xorg/proto/glproto"
_gitname="glproto"

build() {
  cd "${srcdir}"
  msg "Connecting to git.freedesktop.org GIT server...."

  if [ -d "${srcdir}"/${_gitname} ] ; then
   cd "${_gitname}" && git pull origin
   msg "The local files are updated."
  else
   git clone ${_gitroot}
  fi

  msg "GIT checkout done or server timeout"

  msg "Creating build directory"
  if [ -d "${srcdir}"/${_gitname}-build ]; then rm -rf "${srcdir}"/${_gitname}-build; fi
  cp -R "${srcdir}"/${_gitname} "${srcdir}"/${_gitname}-build

  msg "Starting make..."
  cd "${srcdir}"/${_gitname}-build
  ./autogen.sh --prefix=/usr
  make
}

package() {
  cd "${srcdir}"/${_gitname}-build
  make DESTDIR="${pkgdir}" install
  install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname}
  install -m644 "${srcdir}"/${_gitname-build}/COPYING \
                "${pkgdir}"/usr/share/licenses/${pkgname}/
}