Package ggz-gtk-games: Scripts

Post install

1
2
3
4
5
6
# Run ggz-config vs. all installed games
if [ -f /etc/ggz.modules ]; then
	for i in chess chinese-checkers combat dots ggzcards hastings reversi spades tictactoe; do
		ggz-config --install --modfile=/usr/share/ggz/ggz-config/gtk-$i.dsc --force
	done
fi
Pre uninstall

1
2
3
4
5
6
7
8
# Run ggz-config to uninstall all the games
if [ "$1" = "0" ]; then
	if [ -f /etc/ggz.modules ]; then
		for i in chess chinese-checkers combat dots ggzcards hastings reversi spades tictactoe; do
			ggz-config --remove --modfile=/usr/share/ggz/ggz-config/gtk-$i.dsc
		done
	fi
fi