postinst is in xpdf 3.04-7.
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 | #!/bin/sh
set -e
includes=/etc/xpdf/includes
if [ "$1" = "configure" ] || [ "$1" = "triggered" ] || [ "$1" = "upgrade" ] ; then
echo "# PLEASE DO NOT EDIT THIS FILE DIRECTLY." > $includes
echo "# It is automatically kept up to date by the xpdf package scripts." >> $includes
echo "# If you want to manually include additional languages or configuration" >> $includes
echo "# files, please edit the /etc/xpdf/xpdfrc or ~/.xpdfrc config file instead." >> $includes
echo "" >> $includes
if [ -e /usr/share/poppler/cMap ] ; then
for file in /usr/share/xpdf/* ; do
echo "include $file" >> $includes
done
else
echo "# No extra language files found on this system." >> $includes
echo "# Please install the poppler-data package for additional language support." >> $includes
fi
fi
|