blob: 7aadaa1eed5884d497107baf0eae17ecc31ef4df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=glproto
pkgver=1.4.10
pkgrel=0
pkgdesc="X11 OpenGL extension wire protocol"
url="http://xorg.freedesktop.org/"
license="custom"
depends=""
makedepends=""
source="http://xorg.freedesktop.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2"
build ()
{
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir" install || return 1
}
md5sums="c9f8cebfba72bfab674bc0170551fb8d glproto-1.4.10.tar.bz2"
|