mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
18 lines
285 B
Bash
Executable File
18 lines
285 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
-Dgir=false \
|
|
-Dgtk_doc=false \
|
|
-Dintrospection=false \
|
|
. build
|
|
|
|
ninja -C build
|
|
ninja -C build install
|
|
|
|
# Remove unneeded tests
|
|
rm -rf "$1/usr/share/installed-tests"
|
|
rm -rf "$1/usr/libexec/installed-tests"
|