updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / distel / distel.install
blob2099e7894c420921b4249c9ec302206b3ff40979
1 # distel.install
2 # Show Emacs and Erlang configuration instructions for distel.
3 # $Id: distel.install,v e60df2b8d51d 2008/07/08 23:30:22 jbromley $
4 post_install () {
5 if sh -c 'install-info --version' > /dev/nul 2>&1; then
6    if [ -f /usr/share/info/distel.gz ]; then
7        cd /usr/share/info
8        install-info --info-dir=/usr/share/info distel.gz
9    fi
12 cat <<EOF
14 ==>
15 ==> To automatically enable the erlang-extended-mode for editing Erlang
16 ==> files, make sure the distel elisp directory is on your load path and
17 ==> add this to your ~/.emacs:
18 ==>
19 ==>   (require 'distel)
20 ==>   (add-hook 'erlang-mode-hook 'distel-erlang-mode-hook)
21 ==>
22 ==> To have Distel's erlang support libraries available in all your
23 ==> nodes, add this line to your ~/.erlang:
24 ==>
25 ==>   code:add_pathz("/usr/share/distel/ebin").
26 ==>
28 EOF
31 post_upgrade () {
32         post_install $1
35 op=$1
36 shift
37 $op $*
39 # Local Variables:
40 # mode: shell-script
41 # End: