mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 07:10:16 -07:00
ab50b5f8c7
See #276
16 lines
243 B
Bash
Executable File
16 lines
243 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
# Build fails in with clang due to
|
|
# -Werror -> -Wsign-compare.
|
|
export CFLAGS="-Wno-error $CFLAGS"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
-Ddefault_library=both \
|
|
. build
|
|
|
|
ninja -C build
|
|
ninja -C build install
|