2013-02-17 03:36:46 +08:00
|
|
|
#!/bin/bash
|
|
|
|
# tputcolors
|
|
|
|
|
2013-02-16 05:58:39 +08:00
|
|
|
post_install() {
|
2013-02-17 03:36:46 +08:00
|
|
|
post_upgrade
|
2013-02-16 05:58:39 +08:00
|
|
|
}
|
2013-02-17 03:36:46 +08:00
|
|
|
|
|
|
|
post_upgrade() {
|
2013-03-04 00:28:08 +08:00
|
|
|
update-desktop-database -q
|
2013-02-17 03:36:46 +08:00
|
|
|
echo
|
|
|
|
echo 'By using this package you accept the Steam license,'
|
|
|
|
echo 'which has been installed in /usr/share/licenses/steam/LICENSE'
|
|
|
|
echo 'If you do not accept this license, you must remove the package immediately.'
|
|
|
|
echo
|
|
|
|
echo 'Beware that some games need extra libraries, for more info please look our wiki page:'
|
|
|
|
echo 'http://chakra-project.org/wiki/index.php?title=Steam'
|
|
|
|
echo
|
|
|
|
}
|