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]
/
gnalert
/
gnalert.install
blob
580b2bca712dadcee7ef4ef4481fa6371c2774d8
1
post_install() {
2
pacman -Q python-notify &>/dev/null
3
if [ $? -ne 0 ]; then
4
cat << EOF
5
6
NOTE:
7
For aesthetically pleasing notifications, you'll need python-notify.
8
Use "pacman -S python-notify" to install it.
9
10
EOF
11
fi
12
update-desktop-database -q
13
}
14
15
post_upgrade() {
16
post_install $1
17
}
18
19
post_remove() {
20
update-desktop-database -q
21
}
22
23
# vim:set ts=2 sw=2 et: