mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
25 lines
544 B
Bash
Executable File
25 lines
544 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
export CFLAGS="$CFLAGS -fPIC"
|
|
|
|
# Build fails with clang due to -Werror (forced on) and
|
|
# -Wunused-command-line-argument which is triggered by.
|
|
# the below CFLAGS.
|
|
export CFLAGS="-Wno-unused-command-line-argument $CFLAGS"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--libexecdir=/usr/lib \
|
|
-Ddefault_library=both \
|
|
-Ddebug-gui=false \
|
|
-Ddocumentation=false \
|
|
-Dtests=false \
|
|
-Dlibwacom=false \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|