post_remove() {
set -e
PREFIX="/data/data/com.termux/files/usr"

if [[ "${1}" = purge || "pacman" = "pacman" ]]; 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
}
