mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
326 B
Text
25 lines
326 B
Text
pkgname=fusion-icon-git
|
|
|
|
post_install() {
|
|
cat << EOF
|
|
==> Updating icon cache.....
|
|
EOF
|
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
|
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
cat << EOF
|
|
==> Updating icon cache.....
|
|
EOF
|
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|