aboutsummaryrefslogtreecommitdiffstats
path: root/main/xf86-video-rendition/APKBUILD
blob: 82e30c6806343c8b268056a77e67c04a8e960cca (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
41
42
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xf86-video-rendition
pkgver=4.2.6
pkgrel=2
pkgdesc="Rendition video driver"
url="http://xorg.freedesktop.org/"
arch="all"
license="MIT"
subpackages="$pkgname-doc"
depends=
options="!strip"
makedepends="xorg-server-dev libxi-dev fontsproto randrproto util-macros
	videoproto renderproto"

source="http://www.x.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2"

builddir=$srcdir/$pkgname-$pkgver

build() {
	cd "$builddir"
	export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install

	# Stripping manually
	strip $pkgdir/usr/lib/xorg/modules/drivers/rendition_drv.so
	install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
sha512sums="ef4910b11ede69af89a7ee60039113a35c03f2bab5f9433eefbb4ed685b0260f630e9047fa8ab60a7f0e8a0958a24f8821b719e061c26bc51ff7736b500ddbc7  xf86-video-rendition-4.2.6.tar.bz2"