mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
244 B
Text
18 lines
244 B
Text
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 $*
|