diff options
Diffstat (limited to 'abs/core-testing/bash/bash.install')
-rw-r--r-- | abs/core-testing/bash/bash.install | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/core-testing/bash/bash.install b/abs/core-testing/bash/bash.install new file mode 100644 index 0000000..5c3c435 --- /dev/null +++ b/abs/core-testing/bash/bash.install @@ -0,0 +1,21 @@ +info_dir=/usr/share/info +info_files=(bash.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for f in ${info_files[@]}; do + usr/bin/install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for f in ${info_files[@]}; do + usr/bin/install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} +# vim:set ts=2 sw=2 et: |