mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
37 lines
1000 B
Plaintext
37 lines
1000 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xf86-video-ati
|
|
pkgver=18.0.1
|
|
pkgrel=0
|
|
pkgdesc="ATI video driver"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
depends="mesa-dri-ati"
|
|
makedepends="xorg-server-dev libxi-dev fontsproto randrproto
|
|
videoproto renderproto libdrm-dev xf86driproto glproto mesa-dev
|
|
xineramaproto eudev-dev pixman-dev"
|
|
options="!check"
|
|
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 \
|
|
--enable-glamor
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="b468a78503a596bbf71a1b91b231ce1fa32908f619ff2dfe249352d046696a3641f2a9ff065e32545fff77100134b4b237591215e78ef885b6509d6b16112d14 xf86-video-ati-18.0.1.tar.bz2"
|