mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
17 lines
311 B
Text
17 lines
311 B
Text
post_install() {
|
|
gtk-update-icon-cache /usr/share/icons/hicolor && \
|
|
gtk-update-icon-cache /usr/share/icons/Bluecurve && \
|
|
gtk-update-icon-cache /usr/share/icons/crystalsvg
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
[ "$(type -t "$op")" = "function" ] && $op "$@"
|