aboutsummaryrefslogtreecommitdiffstats
path: root/emacs-gtk2/emacs-gtk2.install
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-08 20:28:25 +0200
committerMattias Andrée <m@maandree.se>2024-10-08 20:28:25 +0200
commit472e769077880733441136516ce8f71be35939f1 (patch)
tree424589dfda6ca797b08e6c58b57c4476a8c1dbc2 /emacs-gtk2/emacs-gtk2.install
parentUpdate e-mail (diff)
downloadaur-packages-472e769077880733441136516ce8f71be35939f1.tar.gz
aur-packages-472e769077880733441136516ce8f71be35939f1.tar.bz2
aur-packages-472e769077880733441136516ce8f71be35939f1.tar.xz
Remove some old packages
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'emacs-gtk2/emacs-gtk2.install')
-rw-r--r--emacs-gtk2/emacs-gtk2.install33
1 files changed, 0 insertions, 33 deletions
diff --git a/emacs-gtk2/emacs-gtk2.install b/emacs-gtk2/emacs-gtk2.install
deleted file mode 100644
index 2ef379e..0000000
--- a/emacs-gtk2/emacs-gtk2.install
+++ /dev/null
@@ -1,33 +0,0 @@
-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
-}