diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 16:46:15 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 16:46:15 +0100 |
commit | 1b260919abcaa0b79e07e6cdd801777f33f67f4e (patch) | |
tree | 8f5db43dcb5650f4c56d0cdd26f5c02524e97577 /unstickpixels/unstickpixels.install | |
parent | add autohaltd (diff) | |
download | aur-packages-1b260919abcaa0b79e07e6cdd801777f33f67f4e.tar.gz aur-packages-1b260919abcaa0b79e07e6cdd801777f33f67f4e.tar.bz2 aur-packages-1b260919abcaa0b79e07e6cdd801777f33f67f4e.tar.xz |
add unstickpixels
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'unstickpixels/unstickpixels.install')
-rw-r--r-- | unstickpixels/unstickpixels.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unstickpixels/unstickpixels.install b/unstickpixels/unstickpixels.install new file mode 100644 index 0000000..6e4ef40 --- /dev/null +++ b/unstickpixels/unstickpixels.install @@ -0,0 +1,20 @@ +_file="unstickpixels" + +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 +} + |