mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
251 B
Text
12 lines
251 B
Text
post_install() {
|
|
getent group games > /dev/null || /usr/sbin/groupadd -g 50 games
|
|
cat << EOF
|
|
==> To be able to save configs and games,
|
|
==> add your user to the games group:
|
|
==> # gpasswd -a USERNAME games
|
|
EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|