1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-22 04:27:06 +00:00
termux-packages/x11-packages/shared-mime-info/postrm
2022-04-18 14:50:30 +05:30

14 lines
434 B
Bash
Executable File

#!@TERMUX_PREFIX@/bin/bash
set -e
PREFIX="@TERMUX_PREFIX@"
if [ "${1}" = purge ]; then
MIMEDIR="${PREFIX}/share/mime"
if [ -d "${MIMEDIR}" ]; then
rm -f "${MIMEDIR}"/{globs,globs2,icons,treemagic,generic-icons,types,magic,XMLnamespaces,subclasses,aliases,mime.cache}
rm -rf "${MIMEDIR}"/{application,audio,image,inode,message,model,multipart,text,video,x-content,x-epoc}
rmdir --ignore-fail-on-non-empty "${MIMEDIR}"
fi
fi