postinst is in gettext-el 0.19.8.1-6.
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 | #!/bin/sh
set -e
if [ -x /usr/lib/emacsen-common/emacs-package-install ]; then
if [ ! -f /var/lib/emacsen-common/installed-flavors ]; then
echo Warning: /var/lib/emacsen-common/installed-flavors does not exist.
echo Creating an empty one.
touch /var/lib/emacsen-common/installed-flavors
fi
/usr/lib/emacsen-common/emacs-package-install gettext-el
fi
|