File: meson_integration_commands.sh

package info (click to toggle)
tracker-miners 3.8.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 16,656 kB
  • sloc: ansic: 59,413; python: 3,774; xml: 261; perl: 106; sh: 62; makefile: 53
file content (15 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (5)
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