repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git]
/
elflibviewer
/
elflibviewer.install
blob
8a516a319f1723e2a2463f0b5154bd22a5ceab3d
1
post_install() {
2
echo "Updating hicolor icon cache"
3
if [ -x /usr/bin/gtk-update-icon-cache ]; then
4
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
5
fi
6
if [ -x /usr/bin/xdg-icon-resource ]; then
7
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
8
fi
9
10
}
11
12
post_upgrade() {
13
post_install
14
}
15
16
post_remove() {
17
post_install
18
}
19