summarylogtreecommitdiffstats
path: root/moe.install
diff options
context:
space:
mode:
authorAnton Leontiev2021-04-05 07:55:49 +0300
committerAnton Leontiev2021-04-05 07:59:41 +0300
commit5d1463be9e9fac994969dbead8fd22bd6986a600 (patch)
tree5668d90d609ecce908f365d8a628521a01f70b12 /moe.install
parentc8183ac0379be7d21469f263da49a1e0f69edb42 (diff)
downloadaur-5d1463be9e9fac994969dbead8fd22bd6986a600.tar.gz
moe: Remove install script
texinfo already provides libalpm hook to install/remove Info files.
Diffstat (limited to 'moe.install')
-rw-r--r--moe.install20
1 files changed, 0 insertions, 20 deletions
diff --git a/moe.install b/moe.install
deleted file mode 100644
index 5d606f5bec65..000000000000
--- a/moe.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(moe.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $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 $infodir/dir 2> /dev/null
- done
-}