You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
249 B
9 lines
249 B
#!@TERMUX_PREFIX@/bin/sh
|
|
|
|
# glib-compile-schemas is located in glib-bin package which
|
|
# may not be installed.
|
|
if [ -x "$(command -v glib-compile-schemas)" ]; then
|
|
glib-compile-schemas "@TERMUX_PREFIX@/share/glib-2.0/schemas" > /dev/null
|
|
fi
|
|
|
|
exit 0
|
|
|