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