mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 16:47:19 +08:00
20 lines
298 B
Plaintext
20 lines
298 B
Plaintext
|
pkgname=gstreamer0.10-good-plugins
|
||
|
|
||
|
post_install() {
|
||
|
usr/sbin/gconfpkg --install ${pkgname}
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
|
||
|
pre_remove $1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
||
|
}
|