blob: efbcc51422bf361eaf09974f45efef2a602ea639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=compositeproto
pkgver=0.4.2
pkgrel=0
pkgdesc="X11 Composite extension wire protocol"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
depends="fixesproto"
makedepends=""
source="http://xorg.freedesktop.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2"
build() {
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr || return 1
make || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install || return 1
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
md5sums="98482f65ba1e74a08bf5b056a4031ef0 compositeproto-0.4.2.tar.bz2"
|