diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-12-02 18:39:10 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-12-02 18:39:10 +0100 |
commit | 80aef1017499f3d20273e5b0968298cf02c9b977 (patch) | |
tree | bb2398f86315d2a6a15e8a734748a30b952f27e1 /dist/archlinux/rq.install | |
parent | portable compiler flags (diff) | |
download | read-quickly-80aef1017499f3d20273e5b0968298cf02c9b977.tar.gz read-quickly-80aef1017499f3d20273e5b0968298cf02c9b977.tar.bz2 read-quickly-80aef1017499f3d20273e5b0968298cf02c9b977.tar.xz |
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'dist/archlinux/rq.install')
-rw-r--r-- | dist/archlinux/rq.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/archlinux/rq.install b/dist/archlinux/rq.install new file mode 100644 index 0000000..2f8d896 --- /dev/null +++ b/dist/archlinux/rq.install @@ -0,0 +1,20 @@ +_file="rq" + +infodir="usr/share/info" +file="${_file}.info" + + +post_install() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + +post_upgrade() { + post_install "$1" +} + +pre_remove() { + [[ -x "usr/bin/install-info" ]] || return 0 + install-info --delete -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null +} + |