2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/extra/glib/build

26 lines
539 B
Plaintext
Raw Normal View History

2019-07-23 13:16:17 +00:00
#!/bin/sh -e
2019-10-08 08:16:02 +00:00
export DESTDIR="$1"
2020-02-26 08:18:52 +00:00
# Remove 'libelf' and 'util-linux' dependencies.
2019-11-18 00:58:51 +00:00
sed -i 's/if have_libelf/if not have_libelf/' gio/meson.build
2020-02-26 08:18:52 +00:00
sed -i 's/libmount_dep.found()/false/' meson.build
2020-02-07 23:28:50 +00:00
# Don't build tests.
find . -type f -name meson.build -exec sed -i "/subdir('tests')/d" {} +
2019-07-23 13:16:17 +00:00
meson \
--prefix=/usr \
2020-02-07 23:28:50 +00:00
-Dlibmount=disabled \
-Dinstalled_tests=false \
2019-07-23 13:16:17 +00:00
-Dman=false \
-Dfam=false \
2020-02-26 08:18:52 +00:00
-Dinternal_pcre=true \
2019-07-23 13:16:17 +00:00
. build
ninja -C build
2019-10-08 08:16:02 +00:00
ninja -C build install
2019-08-19 00:45:05 +00:00
2019-10-03 19:24:57 +00:00
# Purge gdbus.
rm -rf "$1/usr/bin/gdbus"