blob: c576a21b27a1229ac1ebf4646972372737a71745 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
path: "%%PREFIX%%/share/glib-2.0/schemas"
cleanup: {
type: lua
sandbox: false
script: <<EOS
os.remove("%%PREFIX%%/share/glib-2.0/schemas/gschemas.compiled")
EOS
}
trigger: {
type: lua
sandbox: false
script: <<EOS
print("Compiling glib schemas")
pkg.exec({"%%PREFIX%%/bin/glib-compile-schemas", "%%PREFIX%%/share/glib-2.0/schemas"})
EOS
}
|