mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
20 lines
277 B
Text
20 lines
277 B
Text
|
pkgname=gnome-keyring
|
||
|
|
||
|
post_install() {
|
||
|
usr/sbin/gconfpkg --install ${pkgname}
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove $1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
if [ -f usr/share/gconf/${pkgname}.schemas ]; then
|
||
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
||
|
fi
|
||
|
}
|