PKGBUILDs/extra/aspell/aspell.install

24 lines
502 B
Text
Raw Normal View History

2009-10-10 02:23:22 +00:00
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: