mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
14 lines
197 B
Bash
Executable File
14 lines
197 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-libuuid
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove XML documentation.
|
|
# False positive.
|
|
# shellcheck disable=2115
|
|
rm -rf "$1/usr/share"
|