mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
41 lines
953 B
Plaintext
41 lines
953 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xf86-video-chips
|
|
pkgver=1.4.0
|
|
pkgrel=4
|
|
pkgdesc="Chips and Technologies video driver"
|
|
url="https://xorg.freedesktop.org"
|
|
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/$pkgname-$pkgver.tar.bz2"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
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="
|
|
813f1dfda9e4397610418a8ea6b16aef1dd43a0ffb5118e297eb374759f8b9a5e6f03a168956022ea7e9f9f7424e3d86d87bd1d1bdec455fd2a132722853b585 xf86-video-chips-1.4.0.tar.bz2
|
|
"
|