blob: 8061f59f26f05ab34c74b0461fb4ad3695cb4d73 (
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.2.0
pkgrel=0
pkgdesc="X11 Resource extension wire protocol"
url="http://xorg.freedesktop.org/"
arch="noarch"
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="cfdb57dae221b71b2703f8e2980eaaf4 resourceproto-1.2.0.tar.bz2"
|