mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
22 lines
530 B
Plaintext
22 lines
530 B
Plaintext
# This is essentially the same file as /var/abs/extra/emacs/emacs.install,
|
|
# but the names of the info files are different.
|
|
|
|
info_dir=/usr/share/info
|
|
info_files=('speech-dispatcher.info' 'speech-dispatcher-cs.info' 'ssip.info'
|
|
'spd-say.info')
|
|
|
|
post_install() {
|
|
for f in ${info_files[@]}; do
|
|
install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
for f in ${info_files[@]}; do
|
|
install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
|
|
done
|
|
} |