blob: 24e2c39fb3fa1b6407f6246c8d600f5e5e601fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
cat << EOM
--> OPTIONAL PACKAGES:
--> Please install optional packages as necessary. They will be found and
--> used automatically:
--> gimp has built-in cups print support now. For more sophisticated printing, install gutenprint.
--> For help browser support, install libgtkhtml.
EOM
echo "update desktop mime database..."
update-desktop-database -q
}
post_upgrade() {
post_install $1
}
post_remove() {
echo "update desktop mime database..."
update-desktop-database -q
}
|