mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
34 lines
803 B
Plaintext
34 lines
803 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xf86-video-ast
|
|
pkgver=1.1.6
|
|
pkgrel=3
|
|
pkgdesc="X.Org driver for ASpeedTech cards"
|
|
url="https://xorg.freedesktop.org"
|
|
arch="x86 x86_64"
|
|
license="MIT"
|
|
makedepends="xorg-server-dev libxi-dev util-macros xorgproto"
|
|
source="https://www.x.org/releases/individual/driver/xf86-video-ast-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
export CFLAGS="${CFLAGS/-fno-plt}"
|
|
export CXXFLAGS="${CXXFLAGS/-fno-plt}"
|
|
export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
8482fec8d6be577f293cb820e623544475163f713fd74ec415f899bf5e9cf9453ffe4f96e141da3671437ebf616b47395d30d4b10858053c5893f5f5b7575ef1 xf86-video-ast-1.1.6.tar.xz
|
|
"
|