forked from ports/compat-32
24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
# Description: X11 client-side library
|
|
# URL: https://xcb.freedesktop.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libinput-32 libpthread-stubs-32 libxslt-32 xorg-libxau-32 xorg-libxcb xorg-libxdmcp-32 xorg-xcb-proto-32
|
|
|
|
name=xorg-libxcb-32
|
|
version=1.14
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/xcb/libxcb-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libxcb-$version
|
|
|
|
PYTHON=/usr/bin/python3 \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share}
|
|
}
|