diff options
author | Britney Fransen <brfransen@gmail.com> | 2013-08-22 16:22:49 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2013-08-22 16:22:49 (GMT) |
commit | 81d6b687db35d5cee3b3243e64873b640e49f75a (patch) | |
tree | 5f371df4f9310181d1e7dc1f1e0b1afb5ef82640 /abs/extra/speech-dispatcher/speech-dispatcher.install | |
parent | 4f96b69b4630b14c016ee713b18a5653cc2bed64 (diff) | |
download | linhes_pkgbuild-81d6b687db35d5cee3b3243e64873b640e49f75a.zip linhes_pkgbuild-81d6b687db35d5cee3b3243e64873b640e49f75a.tar.gz linhes_pkgbuild-81d6b687db35d5cee3b3243e64873b640e49f75a.tar.bz2 |
speech-dispatcher: initial inclusion. dep of chromium 29
Diffstat (limited to 'abs/extra/speech-dispatcher/speech-dispatcher.install')
-rw-r--r-- | abs/extra/speech-dispatcher/speech-dispatcher.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/extra/speech-dispatcher/speech-dispatcher.install b/abs/extra/speech-dispatcher/speech-dispatcher.install new file mode 100644 index 0000000..1565d3a --- /dev/null +++ b/abs/extra/speech-dispatcher/speech-dispatcher.install @@ -0,0 +1,22 @@ +info_dir=usr/share/info +info_files=('speech-dispatcher.info' + 'ssip.info' + 'spd-say.info') + +post_install() { + [[ -x usr/bin/install-info ]] || return 0 + for f in ${info_files[@]}; do + install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install +} + +pre_remove() { + [[ -x usr/bin/install-info ]] || return 0 + for f in ${info_files[@]}; do + install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} |