summarylogtreecommitdiffstats
path: root/ess.install
blob: 38571046fa64a35ecb2460777a8ab8b7d3e98e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
  echo "Please put the lines"
  echo "(setq load-path (cons \"/usr/share/emacs/site-lisp/ess\" load-path))"
  echo "(require 'ess-site)"
  echo "to your ~/.emacs" 
}
post_update() {
  post_install
}
pre_remove() {
  echo "Please remove the line containing"
  echo "(setq load-path (cons \"/usr/share/emacs/site-lisp/ess\" load-path))"
  echo "(load \"/usr/share/emacs/site-lisp/ess/ess-site\")"
  echo "from your ~/.emacs"
}