pkgbuilds/emacs-git/emacs-git.install
Tom Willemse 8cb9f192d3 Rename emacs-bzr to emacs-git
Use the new official git repository instead of the old bzr repository.
2014-11-15 13:56:41 +01:00

32 lines
941 B
Text

ICON_PATH=/usr/share/icons/hicolor
INFO_DIR=/usr/share/info
INFO_FILES=(ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse
ede ediff edt efaq eieio eintr elisp emacs emacs-mime epa erc ert eshell
eudc flymake forms gnus idlwave mairix-el message mh-e newsticker
nxml-mode org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses
sieve smtpmail speedbar tramp url vip viper widget woman)
post_install() {
gtk-update-icon-cache -q -t -f ${ICON_PATH}
update-desktop-database -q
[[ -x /usr/bin/install-info ]] || return 0
for f in ${INFO_FILES[@]}; do
install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
done
}
post_upgrade() {
post_install $1
}
pre_remove() {
gtk-update-icon-cache -q -t -f ${ICON_PATH}
update-desktop-database -q
[[ -x /usr/bin/install-info ]] || return 0
for f in ${INFO_FILES[@]}; do
install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
done
}