mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:37:14 +08:00
14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
|
post_install() {
|
||
|
usr/bin/gtk-query-immodules-2.0 > etc/gtk-2.0/gtk.immodules
|
||
|
usr/bin/gdk-pixbuf-query-loaders > etc/gtk-2.0/gdk-pixbuf.loaders
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
rm -f etc/gtk-2.0/gtk.immodules &>/dev/null
|
||
|
rm -f etc/gtk-2.0/gdk-pixbuf.loaders &>/dev/null
|
||
|
}
|