2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-16 12:42:28 +00:00
repo/extra/atk/build

18 lines
280 B
Plaintext
Raw Normal View History

2019-07-27 16:31:41 +00:00
#!/bin/sh -e
2019-10-07 20:59:59 +00:00
export DESTDIR="$1"
2019-07-27 16:31:41 +00:00
2020-03-10 19:02:17 +00:00
# Don't build tests.
sed -i "/subdir('tests')/d" meson.build
2019-07-27 16:31:41 +00:00
meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
-Ddocs=false \
-Dintrospection=false \
. output
ninja -C output
2019-10-07 20:59:59 +00:00
ninja -C output install