diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-23 15:39:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-23 15:39:58 +0100 |
commit | 56a75a15ddd22bc92369ed4d7cb9b28d685f3f0d (patch) | |
tree | 9ad549f831dd0c1fcc96f8c307512be6e496fddf /dist/archlinux/stable/bfind.install | |
parent | update dist (diff) | |
download | bfind-56a75a15ddd22bc92369ed4d7cb9b28d685f3f0d.tar.gz bfind-56a75a15ddd22bc92369ed4d7cb9b28d685f3f0d.tar.bz2 bfind-56a75a15ddd22bc92369ed4d7cb9b28d685f3f0d.tar.xz |
Change license, rewrite in C, remove info manual, remove shell tab completion, misc3.0
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | dist/archlinux/stable/bfind.install | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/dist/archlinux/stable/bfind.install b/dist/archlinux/stable/bfind.install deleted file mode 100644 index 4f81d3e..0000000 --- a/dist/archlinux/stable/bfind.install +++ /dev/null @@ -1,20 +0,0 @@ -_file="bfind" - -infodir="usr/share/info" -file="${_file}.info.gz" - - -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 -} - |