mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:07:16 +08:00
31 lines
595 B
Plaintext
31 lines
595 B
Plaintext
|
|
post_install() {
|
|
cat << EOF
|
|
|
|
NOTE
|
|
----
|
|
This package brings Blender compiled with cmake.
|
|
Features includes:
|
|
- ffmpeg support
|
|
- gameengine
|
|
- verse support
|
|
- some aditional sequence and texture plugins
|
|
are accesible from /usr/share/blender/plugins
|
|
|
|
EOF
|
|
echo "update desktop mime database..."
|
|
update-desktop-database
|
|
gtk-update-icon-cache -f /usr/share/icons/hicolor/
|
|
}
|
|
|
|
post_upgrade() {
|
|
gtk-update-icon-cache -f /usr/share/icons/hicolor/
|
|
}
|
|
|
|
post_remove() {
|
|
echo "update desktop mime database..."
|
|
update-desktop-database
|
|
gtk-update-icon-cache -f /usr/share/icons/hicolor/
|
|
}
|
|
|