summarylogtreecommitdiffstats
path: root/ccrtp.install
diff options
context:
space:
mode:
authorPeter Mattern2022-04-20 15:56:02 +0200
committerPeter Mattern2022-04-20 15:56:02 +0200
commit51b8d237a10f8e16774997f9bc0e0065747f9fc0 (patch)
tree33a7e5dfef5cdc7080bab9e2c0ff13015a321bfb /ccrtp.install
parentc19a5ad4dd5d251537ff84c9e0f1d73d03cea130 (diff)
downloadaur-51b8d237a10f8e16774997f9bc0e0065747f9fc0.tar.gz
Fix handling of info files
Meanwhile a pacman hook to handle the index file is available. The custom script isn't needed any more. Package texinfo, which is providing the needed binary files, wasn't a dependency of package ccrtp.
Diffstat (limited to 'ccrtp.install')
-rw-r--r--ccrtp.install22
1 files changed, 0 insertions, 22 deletions
diff --git a/ccrtp.install b/ccrtp.install
deleted file mode 100644
index 51b971c5c35b..000000000000
--- a/ccrtp.install
+++ /dev/null
@@ -1,22 +0,0 @@
-infodir=usr/share/info
-filelist=(ccrtp.info)
-
-post_install() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install "$1"
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info --delete "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-# vim:set ts=2 sw=2 et: