summaryrefslogtreecommitdiff
path: root/meson_integration_commands.sh
blob: 34a526f1c8ade54da0a16096f5bd0c34da71c178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Post install triggers.
#
# These are needed when following the developer workflow that we suggest in
# README.md, of installing into an isolated prefix like ~/opt/tracker.

set -e

GLIB_COMPILE_SCHEMAS=$1
GSETTINGS_SCHEMAS_DIR=$2

if [ -z "$DESTDIR" ]; then
    $GLIB_COMPILE_SCHEMAS $GSETTINGS_SCHEMAS_DIR
fi