mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:27:13 +08:00
89f5fdf6ea
- added some makedeps - fixed some pkgs - broken pkgs: 7
20 lines
277 B
Plaintext
20 lines
277 B
Plaintext
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
|
|
}
|