summarylogtreecommitdiffstats
path: root/emacs-llvm-mode.install
blob: f30512a36a7a9b0ea388ba29fa4ec01a984078cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: shell-script -*-

post_install () {
    cat << EOF
==> Put this in your .emacs file to enable llvm-mode:

(setq load-path
    (cons (expand-file-name "/usr/share/emacs/site-lisp/emacs-llvm-mode") load-path))
(require 'llvm-mode)
EOF
}

post_upgrade () {
    post_install $1
}