This file is indexed.

postinst is in jed 1:0.99.19-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh

set -e

case "$1" in
  configure)
    update-alternatives \
    	--install /usr/bin/editor editor /usr/bin/jed 42 \
    	--slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/jed.1.gz;

    update-alternatives \
    	--install /usr/bin/jed-script jed-script /usr/bin/jed 50 \
    	--slave /usr/share/man/man1/jed-script.1.gz jed-script.1.gz /usr/share/man/man1/jed.1.gz;

    TEMP=$(tempfile)
    RET=0
    printf "Updating precompiled files..."
    run-parts --exit-on-error --arg=install /usr/share/jed/compile/ \
        >$TEMP 2>&1 || RET=$?
    if test "$RET" -ne 0 ; then
	echo "failed (see $TEMP)"
	exit $RET
    fi
    echo "done"
    rm $TEMP
    ;;

  abort-upgrade|abort-remove|abort-deconfigure)
    ;;

  *)
    echo "unknown argument --> \"$1"\" >&2
    exit 0
    ;;
esac