core/aspell/aspell.install
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

24 lines
502 B
Plaintext

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: