forked from alnux/repo
15 lines
No EOL
437 B
Text
Executable file
15 lines
No EOL
437 B
Text
Executable file
wget https://xorg.freedesktop.org/archive/individual/lib/libxcb-1.14.tar.xz
|
|
tar -xf libxcb-1.14.tar.xz
|
|
cd libxcb-1.14
|
|
|
|
export XORG_PREFIX="/usr"
|
|
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static"
|
|
|
|
CFLAGS="${CFLAGS:--O2 -g} -Wno-error=format-extra-args" \
|
|
PYTHON=python3 \
|
|
./configure $XORG_CONFIG \
|
|
--without-doxygen \
|
|
|
|
make
|
|
make DESTDIR="$1" install |