mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-24 00:10:05 -07:00
15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--disable-static
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
# Remove library documentation.
|
||
|
# False positive.
|
||
|
# shellcheck disable=2115
|
||
|
rm -rf "$1/usr/share"
|