diff options
Diffstat (limited to 'abs/core/libwmf/libwmf.install')
-rw-r--r-- | abs/core/libwmf/libwmf.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core/libwmf/libwmf.install b/abs/core/libwmf/libwmf.install new file mode 100644 index 0000000..17fa278 --- /dev/null +++ b/abs/core/libwmf/libwmf.install @@ -0,0 +1,18 @@ +post_install() { + if [ -x /usr/bin/gdk-pixbuf-query-loaders ]; then + /usr/bin/gdk-pixbuf-query-loaders > /etc/gtk-2.0/gdk-pixbuf.loaders + fi +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} + +op=$1 +shift + +$op $* |