diff options
author | Roland Bauerschmidt <rb@debian.org> | 2002-04-08 08:49:42 +0000 |
---|---|---|
committer | Roland Bauerschmidt <rb@debian.org> | 2002-04-08 08:49:42 +0000 |
commit | 7e9f24a7d2a880c03f5c4545d3115d8c3f4bc4ce (patch) | |
tree | 003a9f855f8479a5435e759973b4037b48a9918d /debian/fuse-python.prerm | |
parent | 220635a838f76bb37df3a002cfb41d471f185327 (diff) | |
download | libfuse-7e9f24a7d2a880c03f5c4545d3115d8c3f4bc4ce.tar.gz |
Added first version of debian packaging files.
Diffstat (limited to 'debian/fuse-python.prerm')
-rw-r--r-- | debian/fuse-python.prerm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/fuse-python.prerm b/debian/fuse-python.prerm new file mode 100644 index 0000000..c81d33b --- /dev/null +++ b/debian/fuse-python.prerm @@ -0,0 +1,13 @@ +#! /bin/sh -e +# +# sample prerm script for Debian python packages. +# Written 1998 by Gregor Hoffleit <flight@debian.org>. +# + +PACKAGE=`basename $0 .prerm` + +dpkg --listfiles $PACKAGE | + awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | + xargs rm -f >&2 + +#DEBHELPER# |