aboutsummaryrefslogtreecommitdiffstats
path: root/main/libxcomposite/APKBUILD
blob: 225e38dd09c266ac94aa2e52041eaab7f9fe5929 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxcomposite
pkgver=0.4.4
pkgrel=0
pkgdesc="X11 Composite extension library"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
subpackages="$pkgname-dev $pkgname-doc"
depends=
depends_dev="xproto compositeproto libxfixes-dev libx11-dev libxext-dev"
makedepends="libxfixes-dev libxext-dev compositeproto"
source="http://xorg.freedesktop.org//releases/individual/lib/libXcomposite-$pkgver.tar.bz2"

_builddir="$srcdir"/libXcomposite-$pkgver

prepare() {
	cd "$_builddir"
	chmod u+w config.sub
	update_config_sub || return 1
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

md5sums="f7a218dcbf6f0848599c6c36fc65c51a  libXcomposite-0.4.4.tar.bz2"