mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 22:07:18 +08:00
a6c70fd4dc
new steam monochromatic icon introduced added "update-desktop-database -q" to the install file to update the .desktop file after the installation removed flashplugin as optdepends because lib32 version is needed (actually present in ccr)
18 lines
503 B
Bash
18 lines
503 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
|
|
} |