mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-25 00:30:06 -07:00
17 lines
254 B
Bash
Executable File
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"
|