mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-28 09:51:46 +02:00
8 lines
237 B
Bash
8 lines
237 B
Bash
#!/bin/sh
|
|
|
|
for i in shotwell.schemas; do
|
|
echo "Installing GConf2 schema $i."
|
|
GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
|
|
/usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null
|
|
done
|