mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 22:04:37 +02:00
30 lines
849 B
Text
30 lines
849 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxxf86vm
|
|
pkgver=1.1.6
|
|
pkgrel=0
|
|
pkgdesc="X11 XFree86 video mode extension library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
options="!check" # No test suite.
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
makedepends="xorgproto libx11-dev libxext-dev util-macros"
|
|
source="https://www.x.org/releases/individual/lib/libXxf86vm-$pkgver.tar.xz"
|
|
builddir="$srcdir"/libXxf86vm-$pkgver
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="
|
|
7fb3ac4302eea43b70d5106f6c7a113e28e2807da22d2bb7f040e0c4afd322cad4b7f258a5bd6da3940b6b6b39065e1acb218a6dc0ba06b9dd86ea3849231266 libXxf86vm-1.1.6.tar.xz
|
|
"
|