core/texinfo/texinfo.install
2010-05-16 15:08:55 +00:00

22 lines
517 B
Plaintext

infodir=/usr/share/info
filelist=(info.info info-stnd.info texinfo texinfo-1 texinfo-2 texinfo-3)
post_install() {
# Scan *all* info files on install
for file in $(find $infodir -type f ! -name dir); do
install-info $file $infodir/dir 2> /dev/null
done
}
post_upgrade() {
for file in ${filelist[@]}; do
install-info $infodir/$file.gz $infodir/dir 2> /dev/null
done
}
pre_remove() {
for file in ${filelist[@]}; do
install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
done
}