summaryrefslogtreecommitdiff
path: root/pcr/emacs-with-editor-git/emacs-with-editor-git.install
blob: 10c08d4ce5b45a1447d27c87d73108bf1c2044ca (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
infodir=/usr/share/info
filelist=(with-editor.info)

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

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
}

op=$1
shift
$op $*