2001-02-22 00:49:39 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
#
|
|
|
|
|
# Written 1998 by Gregor Hoffleit <flight@debian.org>.
|
|
|
|
|
# used by Bastian Kleineidam for LinkChecker
|
|
|
|
|
|
|
|
|
|
PACKAGE=linkchecker
|
2001-11-16 11:03:56 +00:00
|
|
|
PYTHON=python2.1
|
2001-02-22 00:49:39 +00:00
|
|
|
|
2001-10-16 19:28:07 +00:00
|
|
|
#DEBHELPER#
|
|
|
|
|
|
2001-02-22 00:49:39 +00:00
|
|
|
dpkg --listfiles $PACKAGE |
|
|
|
|
|
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
|
|
|
|
|
xargs rm -f >&2
|
|
|
|
|
|
2001-11-16 11:03:56 +00:00
|
|
|
rmdir /usr/lib/$PYTHON/site-packages/linkcheck 2>/dev/null || true
|
2001-02-22 00:49:39 +00:00
|
|
|
|
2002-02-24 12:29:35 +00:00
|
|
|
# for later use of python-central
|
|
|
|
|
#/usr/sbin/register-python-package module remove linkchecker ">=2.0"
|
|
|
|
|
|
2001-02-22 00:49:39 +00:00
|
|
|
exit 0
|