mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-01-25 02:22:16 +08:00
19 lines
504 B
Bash
19 lines
504 B
Bash
#!/bin/bash
|
|
# tputcolors
|
|
|
|
post_install() {
|
|
post_upgrade
|
|
}
|
|
|
|
post_upgrade() {
|
|
update-desktop-database -q
|
|
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
|
|
}
|