blob: 35a707927b3370e3dafd66fe021cbbfc88b03e9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
notice() {
cat <<EOM
== IMPORTANT NOTICE ==
This package contains several patches that were introduced
to strengthen and protect the end user from security threats.
In addition, it was adapted to be installed side by side with
icedove. This way you could running 'icedove-hardened' and
use just 'icedove' where needed.
EOM
}
post_install() {
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
notice
}
post_upgrade() {
post_install
}
post_remove() {
update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|