blob: 8a0ca2b1d941348f13d575a143fb326dc7a37633 (
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=resourceproto
pkgver=1.1.0
pkgrel=0
pkgdesc="X11 Resource extension wire protocol"
url="http://xorg.freedesktop.org/"
arch="x86 x86_64"
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="84795594b3ebd2ee2570cf93340d152c resourceproto-1.1.0.tar.bz2"
|