mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
36 lines
907 B
Plaintext
36 lines
907 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xf86-video-vesa
|
|
pkgver=2.6.0
|
|
pkgrel=4
|
|
pkgdesc="X.org generic VESA video driver"
|
|
url="https://xorg.freedesktop.org/wiki/"
|
|
arch="x86 x86_64"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
makedepends="xorg-server-dev libxi-dev util-macros xorgproto"
|
|
source="https://www.x.org/releases/individual/driver/xf86-video-vesa-$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
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="
|
|
494e117c1e6e0ce4c66ac7798de54667862c62605bfd76dd9373447d40dcd0521100810c9285cbe9c159440e217954c0cad6d5219c5894e075509c7c0bc353c7 xf86-video-vesa-2.6.0.tar.xz
|
|
"
|