mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
366 B
Text
23 lines
366 B
Text
pkgname=libcanberra
|
|
|
|
post_install() {
|
|
if [ -x usr/sbin/gconfpkg ]; then
|
|
usr/sbin/gconfpkg --install ${pkgname}
|
|
fi
|
|
}
|
|
|
|
pre_upgrade() {
|
|
if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
|
|
pre_remove
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
if [ -x usr/sbin/gconfpkg ]; then
|
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
|
fi
|
|
}
|