From 8bb1cab7c93347d2fdf88abc44a304471e2d2f57 Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Wed, 6 May 2015 21:07:37 -0500 Subject: emacs-git-25.0.50.r120799-1: updating version --- pcr/emacs-git/emacs-git.install | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pcr/emacs-git/emacs-git.install (limited to 'pcr/emacs-git/emacs-git.install') diff --git a/pcr/emacs-git/emacs-git.install b/pcr/emacs-git/emacs-git.install new file mode 100644 index 000000000..6712f44ba --- /dev/null +++ b/pcr/emacs-git/emacs-git.install @@ -0,0 +1,32 @@ +ICON_PATH=usr/share/icons/hicolor +INFO_DIR=usr/share/info + +INFO_FILES=(ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse +ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc ert eshell eudc flymake +forms gnus htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode +org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail +speedbar srecode tramp url vip viper widget wisent 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 +} -- cgit v1.2.3-2-g168b