summarylogtreecommitdiffstats
path: root/jabber.el.install
blob: 55688899567db1671e165ddd2a8e40264630f6ac (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
infodir=/usr/share/info
filelist=(jabber.info.gz)
pkgname=emacs-jabber

pre_upgrade() {
  /usr/sbin/gconfpkg --uninstall $pkgname
}

post_install() {
  /usr/sbin/gconfpkg --install $pkgname
  for file in ${filelist[@]}; do
    install-info $infodir/$file $infodir/dir 2> /dev/null
  done
  echo "Please add the following line to your .emacs." 
  echo "(require 'jabber)"
}

post_upgrade() {
  post_install 
}

pre_remove() {
  /usr/sbin/gconfpkg --uninstall $pkgname
  for file in ${filelist[@]}; do
    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
  done
}