blob: e441a6f02cf5531d6e80f58a6f75a91901f793c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
post_remove
cat << EOF
>>> For installing some sample presets in ~/.miniComputer, use
>>> /usr/share/minicomputer/installpresets.sh
>>>
>>> Use "minicomputer" to start the engine and the GUI
>>> Documentation can be found in /usr/share/doc/minicomputer/Manual.pdf
EOF
}
post_upgrade() {
post_remove
}
post_remove() {
update-desktop-database -q
}
|