summarylogtreecommitdiffstats
path: root/speech-dispatcher-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'speech-dispatcher-git.install')
-rw-r--r--speech-dispatcher-git.install22
1 files changed, 0 insertions, 22 deletions
diff --git a/speech-dispatcher-git.install b/speech-dispatcher-git.install
deleted file mode 100644
index 4cba3241344d..000000000000
--- a/speech-dispatcher-git.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
-}