blob: 96c2a2ad1e27d22ee2d92dd67c230c69e860d62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
update-desktop-database -q /usr/share/applications
echo ' '
echo 'Before running materialize-bin please execute "materialize-bin --init" for every user who wants to use this software.'
echo ' '
}
post_upgrade() {
post_install $1
}
post_remove() {
update-desktop-database -q /usr/share/applications
}
# vim:set ts=2 sw=2 et:
|