mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
14 lines
295 B
Text
14 lines
295 B
Text
|
post_install() {
|
||
|
#We need to update the pixbuf loaders to let GTK support SVG images
|
||
|
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 $1
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_install $1
|
||
|
}
|