mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
16 lines
454 B
Plaintext
16 lines
454 B
Plaintext
post_install() {
|
|
update-mime-database usr/share/mime > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
if [ -d usr/share/mime ]; then
|
|
rm -f usr/share/mime/{globs,globs2,icons,treemagic,generic-icons,types,magic,XMLnamespaces,subclasses,aliases,mime.cache}
|
|
rm -rf usr/share/mime/{application,audio,image,inode,message,model,multipart,text,video,x-content,x-epoc}
|
|
rmdir --ignore-fail-on-non-empty usr/share/mime
|
|
fi
|
|
}
|