2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/xorg/libxcb/build
2021-07-06 16:49:16 +03:00

17 lines
254 B
Bash
Executable File

#!/bin/sh -e
sed 's/pthread-stubs //' configure > _
mv -f _ configure
chmod +x configure
./configure \
--prefix=/usr
make
make DESTDIR="$1" install
# Remove library documentation.
# False positive.
# shellcheck disable=2115
rm -rf "$1/usr/share"