summaryrefslogtreecommitdiff
path: root/pcr/emacs-elib/emacs-elib.install
blob: a0f80eadc9411a0388511b3fbc15b88d356668de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# emacs-elib.install
# Install info file and show configuration info.
# $Id: emacs-elib.install,v e6d455730f95 2008/06/23 05:55:28 jbromley $
post_install () {
if sh -c 'install-info --version' > /dev/nul 2>&1; then
   if [ -f /usr/share/info/elib.info.gz ]; then
       cd /usr/share/info
       install-info --info-dir=/usr/share/info --section=Emacs --name=Elib \
                    --description=' The Emacs Lisp Library' elib.info.gz
   fi
fi

echo ""
echo "==> To use elib, add the following Lisp to your ~/.emacs file:"
echo "==> "
echo "==> (setq load-path (append (list \"/usr/share/emacs/site-lisp/elib\")"
echo "==>                         load-path))"
echo "==> "
echo "==> You do not need this if you have a subdirs.el in your Emacs site-lisp"
echo "==> directory."
echo ""
}

post_upgrade () {
        post_install $1
}

pre-remove () {
  install-info --info-dir=/usr/share/info --section=Emacs --name=Elib \
                    --description=' The Emacs Lisp Library' elib.info.gz
		    }