aboutsummaryrefslogtreecommitdiffstats
path: root/games/linux-warsow/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'games/linux-warsow/pkg-deinstall')
-rw-r--r--games/linux-warsow/pkg-deinstall16
1 files changed, 0 insertions, 16 deletions
diff --git a/games/linux-warsow/pkg-deinstall b/games/linux-warsow/pkg-deinstall
deleted file mode 100644
index 6fb33555bef1..000000000000
--- a/games/linux-warsow/pkg-deinstall
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-case $2 in
- DEINSTALL)
- config_file=$PKG_PREFIX/lib/warsow/basewsw/config.cfg
-
- if [ -e $config_file ] && ! [ -s $config_file ]; then
- rm -f $config_file
- fi
- ;;
-
- POST-DEINSTALL)
- rmdir $PKG_PREFIX/lib/warsow/basewsw 2>/dev/null || true
- rmdir $PKG_PREFIX/lib/warsow 2>/dev/null || true
- ;;
-esac