6 lines
132 B
Bash
Executable file
6 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z $DESTDIR ]; then
|
|
PREFIX=${MESON_INSTALL_PREFIX:-/usr}
|
|
glib-compile-schemas "$PREFIX/share/glib-2.0/schemas"
|
|
fi
|