summarylogtreecommitdiffstats
path: root/speech-dispatcher-git.install
diff options
context:
space:
mode:
authorAlexander Epaneshnikov2021-07-11 20:50:25 +0300
committerAlexander Epaneshnikov2021-07-13 23:37:34 +0300
commit0a56e0c512030d81f22a195f8a475d8142e1ba58 (patch)
tree6f8b0e5f36e59920528288d129c37f8d42f317e3 /speech-dispatcher-git.install
parent70781005f9ce823389a69cee17339be2b216ab3d (diff)
downloadaur-0a56e0c512030d81f22a195f8a475d8142e1ba58.tar.gz
update pkgbuild
many improvements and fixes.
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
-}