File: prerm

package info (click to toggle)
squishdot 1.5.0-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,016 kB
  • ctags: 440
  • sloc: python: 2,829; makefile: 56; sh: 23
file content (19 lines) | stat: -rw-r--r-- 283 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh
# prerm script for squishdot

set -e

PACKAGE=squishdot

dpkg --listfiles $PACKAGE |
	awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
	xargs rm -f >&2

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0