summarylogtreecommitdiffstats
path: root/escreen.install
blob: 6468a800ec463056a8f044e329f6ea8b63c6381f (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
post_install() {
  cat << EOM
To activate, add the following code into your ~/.emacs file:
---
(load "escreen")
(escreen-install)
---
Also recommended customizations, taken from
http://tapoueh.org/blog/2009/09/22-escreen-integration.html ,
can be found in /usr/share/doc/emacs-escreen/dotemacs

EOM
}
post_upgrade() {
  post_install
}

## arg 1:  the old package version
#pre_remove() {
  # do something here
#}

## arg 1:  the old package version
#post_remove() {
  # do something here
#}

# vim:set ts=2 sw=2 et: