diff options
Diffstat (limited to 'abs/core-testing/texinfo/texinfo.install')
-rw-r--r-- | abs/core-testing/texinfo/texinfo.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core-testing/texinfo/texinfo.install b/abs/core-testing/texinfo/texinfo.install new file mode 100644 index 0000000..87c7ac4 --- /dev/null +++ b/abs/core-testing/texinfo/texinfo.install @@ -0,0 +1,18 @@ +infodir=/usr/share/info +filelist=(info.info.gz info-stnd.info.gz texinfo.gz texinfo-1.gz texinfo-2.gz texinfo-3.gz) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} |