diff options
Diffstat (limited to 'community/librep/librep.install')
-rw-r--r-- | community/librep/librep.install | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/community/librep/librep.install b/community/librep/librep.install deleted file mode 100644 index 7e1b990bf..000000000 --- a/community/librep/librep.install +++ /dev/null @@ -1,18 +0,0 @@ -info_dir=usr/share/info -info_files=(librep.info) - -post_install() { - for f in ${info_files[@]}; do - install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null - done -} - -post_upgrade() { - post_install -} - -pre_remove() { - for f in ${info_files[@]}; do - install-info --delete ${info_dir}/$f ${info_dir}/dir 2> /dev/null - done -} |