summarylogtreecommitdiffstats
path: root/auctex.install
blob: 8aaf389cbf1729d96c440462a3215af10359a752 (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
29
infodir=/usr/share/info
filelist=(auctex.info.gz preview-latex.info.gz)

post_install() {
[ -x usr/bin/install-info ] || return 0
  for file in ${filelist[@]}; do
    install-info $infodir/$file $infodir/dir 2> /dev/null
  done
cat << EOF
==> For GNU Emacs, the recommended way to activate 
==> AUCTeX and preview-latex is to add the
==> following lines to your ~/.emacs file:
(load "auctex.el" nil t t)
(load "preview-latex.el" nil t t)
EOF
texconfig-sys rehash
}

post_upgrade() {
  post_install $1
}

pre_remove() {
  [ -x usr/bin/install-info ] || return 0
  for file in ${filelist[@]}; do
    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
  done
  texconfig-sys rehash
}