mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:37:14 +08:00
32 lines
532 B
Plaintext
32 lines
532 B
Plaintext
info_dir=/usr/share/info
|
|
info_files=(gnuplot.info)
|
|
|
|
post_install() {
|
|
if [ -f /usr/bin/mktexlsr ]; then
|
|
echo "Updating TeX tree..."
|
|
mktexlsr
|
|
fi
|
|
|
|
for f in ${info_files[@]}; do
|
|
install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
for f in ${info_files[@]}; do
|
|
install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
|
|
done
|
|
}
|
|
|
|
post_remove() {
|
|
if [ -f /usr/bin/mktexlsr ]; then
|
|
echo "Updating TeX tree..."
|
|
mktexlsr
|
|
fi
|
|
}
|
|
|