blob: 347bcc4c0e69dfbd4402a0895dca819bbb171c4c (
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 <<EOF
##################################
Super Mario War successfully installed.
Run the game using the .desktop files
in /usr/share/applications directory,
OR with command bellow:
/usr/bin/smw --datadir /var/lib/supermariowar
##################################
EOF
}
post_upgrade() {
cat <<EOF
##################################
Super Mario War successfully installed.
Run the game using the .desktop files
in /usr/share/applications directory,
OR with command bellow:
/usr/bin/smw --datadir /var/lib/supermariowar
##################################
EOF
}
|