2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/xorg/libxcb/build

17 lines
254 B
Plaintext
Raw Normal View History

2019-06-27 06:37:40 +00:00
#!/bin/sh -e
2021-07-03 20:25:32 +00:00
sed 's/pthread-stubs //' configure > _
mv -f _ configure
chmod +x configure
2019-06-27 06:37:40 +00:00
./configure \
2019-10-08 18:29:03 +00:00
--prefix=/usr
2019-06-27 06:37:40 +00:00
make
make DESTDIR="$1" install
2021-07-06 13:49:16 +00:00
# Remove library documentation.
# False positive.
# shellcheck disable=2115
rm -rf "$1/usr/share"