postinst is in libjson0-dev 0.11-4ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh
set -e
DOCDIR=/usr/share/doc/libjson0-dev
DOCLINK=libjson-c-dev
if [ -d $DOCDIR ] && [ ! -L $DOCDIR ]; then
rmdir $DOCDIR
ln -s $DOCLINK $DOCDIR
fi
INCDIR=/usr/include/json
INCLINK=json-c
if [ -d $INCDIR ] && [ ! -L $INCDIR ]; then
rmdir $INCDIR
ln -s $INCLINK $INCDIR
fi
exit 0
|