mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:14:46 +08:00
18 lines
252 B
Plaintext
18 lines
252 B
Plaintext
|
info_dir=usr/share/info
|
||
|
|
||
|
post_install() {
|
||
|
install-info ${info_dir}/mpfi.info.gz ${info_dir}/dir
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
install-info --delete ${info_dir}/mpfi.info.gz ${info_dir}/dir
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove
|
||
|
}
|