File: nethack-common.postrm

package info (click to toggle)
nethack 3.4.3-10.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,588 kB
  • ctags: 16,957
  • sloc: ansic: 196,792; cpp: 7,083; sh: 6,887; yacc: 2,005; lex: 377; makefile: 112; awk: 89; sed: 11
file content (25 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

# Nethack post-remove script for Debian
#
# Ben Gertzfield (che@debian.org) 29 July 1997
# Copyright 1997 Ben Gertzfield. This script is released under the
# GNU General Public License, version 2 or later.

# Updated 13 October 2003 to move the debhelper above the save-files
# purge (seems to be reading from stdin, seeing the "Purging" echo
# as a command)

# Updated 18 August 1998 to rm -rf the score/save directory on a purge,
# added debhelper comments

set -e

#DEBHELPER#

if [ "$1" = "purge" ]; then
    echo -n "Purging high-scores and save-files for Nethack... "
    rm -rf /var/games/nethack/
    echo "done."
fi