mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
12 lines
176 B
Text
12 lines
176 B
Text
|
MSG="You need to be in the games group to use the score files."
|
||
|
|
||
|
post_install() {
|
||
|
echo $MSG
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
if [ $(vercmp 2.17-8 $2) -ge 0 ]; then
|
||
|
echo $MSG
|
||
|
fi
|
||
|
}
|