2006-08-04 17:16:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
case $2 in
|
|
|
|
DEINSTALL)
|
2006-08-20 17:11:09 +02:00
|
|
|
config_file=$PKG_PREFIX/share/warsow/config.cfg
|
2006-08-04 17:16:55 +02:00
|
|
|
|
|
|
|
if [ -e $config_file ] && ! [ -s $config_file ]; then
|
|
|
|
rm -f $config_file
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
POST-DEINSTALL)
|
|
|
|
rmdir $PKG_PREFIX/share/warsow 2>/dev/null || true
|
|
|
|
;;
|
|
|
|
esac
|