summaryrefslogtreecommitdiffstats
path: root/abs/extra/speech-dispatcher/speech-dispatcher.install
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra/speech-dispatcher/speech-dispatcher.install')
-rw-r--r--abs/extra/speech-dispatcher/speech-dispatcher.install22
1 files changed, 0 insertions, 22 deletions
diff --git a/abs/extra/speech-dispatcher/speech-dispatcher.install b/abs/extra/speech-dispatcher/speech-dispatcher.install
deleted file mode 100644
index 1565d3a..0000000
--- a/abs/extra/speech-dispatcher/speech-dispatcher.install
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-}