mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
37 lines
890 B
Text
37 lines
890 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxcb
|
|
pkgver=1.17.0
|
|
pkgrel=0
|
|
pkgdesc="X11 client-side library"
|
|
url="https://xcb.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-static $pkgname-dev $pkgname-doc"
|
|
depends_dev="libxau-dev xcb-proto"
|
|
checkdepends="check-dev"
|
|
options="!check" # upstream requires an old check version (0.9.4)
|
|
makedepends="$depends_dev libxdmcp-dev libxslt python3"
|
|
source="https://xorg.freedesktop.org/archive/individual/lib/libxcb-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-xkb \
|
|
--enable-xinput \
|
|
--disable-xprint
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
sha512sums="
|
|
945b1f28e8b407a4d0ebf88c99ef3cbef763fd75e6eaa8e971946e44ce8dbe9b478c56ae85aaaadab7fdb25987e88570d9d4fb9ad2febd6d6bf21d644a0e10d0 libxcb-1.17.0.tar.xz
|
|
"
|