blob: 0b3db1d95aefbd50bcfcd6e6efc8b1ae6ca83103 [file] [log] [blame]
MINGW_INSTALL=clang64
post_install() {
XDG_DATA_DIRS=/${MINGW_INSTALL}/share ${MINGW_INSTALL}/bin/update-mime-database ${MINGW_INSTALL}/share/mime > /dev/null 2>&1
}
post_upgrade() {
post_install
}
post_remove() {
if [ -d ${MINGW_INSTALL}/share/mime ]; then
rm -f ${MINGW_INSTALL}/share/mime/{globs,globs2,icons,treemagic,generic-icons,types,magic,XMLnamespaces,subclasses,aliases,mime.cache}
rm -rf ${MINGW_INSTALL}/share/mime/{application,audio,image,inode,message,model,multipart,text,video,x-content,x-epoc}
rmdir --ignore-fail-on-non-empty ${MINGW_INSTALL}/share/mime
fi
}