blob: 1229e707019dbd97e398687c63f953597d1d36f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=resourceproto
pkgver=1.1.1
pkgrel=0
pkgdesc="X11 Resource extension wire protocol"
url="http://xorg.freedesktop.org/"
arch="all"
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
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install || return 1
}
md5sums="8ff0525ae7502b48597b78d00bc22284 resourceproto-1.1.1.tar.bz2"
|