File: postrm

package info (click to toggle)
vice 1.19-1etch1
  • links: PTS
  • area: contrib
  • in suites: etch
  • size: 27,132 kB
  • ctags: 33,406
  • sloc: ansic: 257,145; cpp: 13,395; sh: 3,674; makefile: 3,380; perl: 1,801; yacc: 622; lex: 258; asm: 4
file content (14 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

#echo $0 "$@"
#set -x

#DEBHELPER#

# we're getting out of town
if [ "$1" = purge -a -d /usr/lib/vice ]; then
    echo -n "Removing /usr/lib/vice/ (ROM images) ... "
    rm -r /usr/lib/vice
    echo done.
fi