blob: cc1980d42dee3caec4842518134ae2b89ac9e480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
if (! pacman -Qqs '^aquaria' | grep -vw 'data' >/dev/null); then
cat <<END
.-----------------------------------------------------------------.
| This package only installs the (proprietary) game data. |
| For the game executable, install one of the following packages: |
| aquaria-ose |
| aquaria-ose-git |
'-----------------------------------------------------------------'
END
fi
}
post_upgrade() {
post_install "$@"
}
|