mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 14:50:07 -07:00
e0e566cdc2
closes #203
17 lines
285 B
Bash
Executable File
17 lines
285 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export CFLAGS="$CFLAGS -Wno-error=switch"
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Ddefault-wallpaper=false \
|
|
-Dzsh-completions=false \
|
|
-Dbash-completions=false \
|
|
-Dfish-completions=false \
|
|
build
|
|
|
|
ninja -C build
|
|
ninja -C build install
|