mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-15 23:01:44 +08:00
24 lines
617 B
Bash
24 lines
617 B
Bash
#!/bin/bash
|
|
# tputcolors
|
|
|
|
post_install() {
|
|
post_upgrade
|
|
}
|
|
|
|
post_upgrade() {
|
|
update-desktop-database -q
|
|
cat <<EOF
|
|
By using this package you accept the Steam license,
|
|
which has been installed in /usr/share/licenses/steam/LICENSE
|
|
If you do not accept this license, you must remove the package immediately.
|
|
|
|
Chakra Linux is not officially supported by Valve.
|
|
For help visit the wiki page of Steam https://chakraos.org/wiki/index.php?title=Steam
|
|
or ask for help in the forum
|
|
|
|
Beware that some games need extra libraries, for more info please look our wiki page:
|
|
http://chakraos.org/wiki/index.php?title=Steam
|
|
EOF
|
|
|
|
}
|