mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
20 lines
284 B
Plaintext
20 lines
284 B
Plaintext
pkgname=libgsf-gnome
|
|
|
|
post_install() {
|
|
usr/sbin/gconfpkg --install ${pkgname}
|
|
}
|
|
|
|
pre_upgrade() {
|
|
pre_remove $1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
|
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
|
fi
|
|
}
|