mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
361 B
Text
15 lines
361 B
Text
post_install() {
|
|
which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
|
|
cat << _EOF
|
|
Optional packages for Qemulator:
|
|
Tray icon support: 'gnome-python-extras'
|
|
_EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
|
|
}
|