mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
18 lines
213 B
Plaintext
18 lines
213 B
Plaintext
|
pkgname=gcdmaster
|
||
|
|
||
|
post_install() {
|
||
|
usr/sbin/gconfpkg --install ${pkgname}
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove $1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
||
|
}
|