diff options
Diffstat (limited to 'abs/core/glproto')
-rw-r--r-- | abs/core/glproto/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/core/glproto/PKGBUILD b/abs/core/glproto/PKGBUILD new file mode 100644 index 0000000..fe75df2 --- /dev/null +++ b/abs/core/glproto/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Alexander Baldeck <alexander@archlinux.org> +# Contributor: Jan de Groot <jgc@archlinux.org> +pkgname=glproto +pkgver=1.4.9 +pkgrel=1 +pkgdesc="X11 OpenGL extension wire protocol" +arch=(i686 x86_64) +url="http://xorg.freedesktop.org/" +license=('custom') +source=(http://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2) + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 +} + +md5sums=('e60951628422663e60faeb400f27bac1') |