For Debian developer, you need to call scrollkeeper-update like that in your scripts. You should never install all files generated during the build process in /var/lib/scrollkeeper in the package. -----------------postinst--------------------- if [ "$1" = "configure" ]; then scrollkeeper-update 2> /dev/null fi ---------------------------------------------- -----------------postrm----------------------- if [ "$1" = remove ]; then scrollkeeper-update 2> /dev/null fi ---------------------------------------------- Christian