mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
31 lines
952 B
Text
31 lines
952 B
Text
|
info_dir=/usr/share/info
|
||
|
|
||
|
info_files=(infoada-mode autotype calc ccmode cl dir dired-x ebrowse
|
||
|
ediff efaq eintr elisp emacs emacs-mime erc eshell eudc flymake forms
|
||
|
gnus idlwave info message mh-e newsticker org pcl-cvs pgg rcirc reftex
|
||
|
sc ses sieve smtpmail speedbar tramp url vip viper widget woman)
|
||
|
|
||
|
post_install() {
|
||
|
for f in ${info_files[@]}; do
|
||
|
install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
|
||
|
done
|
||
|
|
||
|
[ -x /usr/bin/gtk-update-icon-cache ] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
[ -x /usr/bin/update-desktop-database ] && update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
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() {
|
||
|
[ -x /usr/bin/gtk-update-icon-cache ] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
[ -x /usr/bin/update-desktop-database ] && update-desktop-database -q
|
||
|
}
|