pkg://jed-common_0.99.16-5_all.deb:554266/postinst
info downloads
#!/bin/sh -e
case "$1" in
configure)
install-info --quiet --section Editors Editors --description='Programmers editor.' /usr/share/info/jed.info.gz;
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "unknown argument --> \"$1"\" >&2
exit 0
;;
esac
# Automatically added by dh_installdocs
if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
install-docs -i /usr/share/doc-base/jed-common
fi
# End automatically added section