mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
23 lines
418 B
Text
23 lines
418 B
Text
![]() |
post_install() {
|
||
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||
|
ggz-config -i -f -m usr/share/ggz/kbattleship.dsc >& /dev/null
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
if [ -f usr/share/ggz/kbattleship.dsc ]; then
|
||
|
ggz-config -r -m usr/share/ggz/kbattleship.dsc >& /dev/null
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
||
|
}
|