mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:57:16 +08:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
|
info_dir=/usr/share/info
|
||
|
|
||
|
post_install() {
|
||
|
install-info ${info_dir}/libcdio.info.gz ${info_dir}/dir 2> /dev/null
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
install-info --delete ${info_dir}/libcdio.info.gz ${info_dir}/dir 2> /dev/null
|
||
|
}
|