~xpresser-team/xpresser/cleanup

« back to all changes in this revision

Viewing changes to debian/python-xpresser/DEBIAN/prerm

  • Committer: Chris Wayne
  • Date: 2012-07-05 13:52:37 UTC
  • mfrom: (10.1.6 gtk3-port-with-cairo)
  • Revision ID: chris.wayne@canonical.com-20120705135237-7f52h9sfxwu279dr
Merging in gtk3 support with simple cv, adding debian packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
# Automatically added by dh_python2:
 
5
if which pyclean >/dev/null 2>&1; then
 
6
        pyclean -p python-xpresser 
 
7
else
 
8
        dpkg -L python-xpresser | grep \.py$ | while read file
 
9
        do
 
10
                rm -f "${file}"[co] >/dev/null
 
11
        done
 
12
fi
 
13
 
 
14
# End automatically added section