mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-25 02:22:13 +08:00
15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
post_install() {
|
|
# Prevent a bug, where eclipse hangs without this.
|
|
xulrunner --register-global >/dev/null 2>&1
|
|
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
}
|