summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/aspell/aspell.install
blob: 2747f021e0561cfa6bf4ec1830856a9d37bcab4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
infodir=/usr/share/info
filelist=(aspell.info aspell-dev.info)

post_install() {
  for file in ${filelist[@]}; do
    install-info $infodir/$file $infodir/dir 2> /dev/null
  done
  echo "==> aspell comes with no default dictionary"
}

post_upgrade() {
  for file in ${filelist[@]}; do
    install-info $infodir/$file $infodir/dir 2> /dev/null
  done
}

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

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