This file is indexed.

postinst is in gnustep-back-common 0.20.1-2ubuntu1.

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
36
#!/bin/sh
set -e

FONTSDIR=/var/lib/GNUstep/Fonts

case "$1" in
    configure)
	echo -n "Generating GNUstep nfont descriptions..."
	if [ -d $FONTSDIR ]; then
	  rm -rf $FONTSDIR/*
	else
	  mkdir -p $FONTSDIR
	fi
	cd $FONTSDIR; \
	  mknfonts $(fc-list : file | grep -v '\.gz' | cut -d: -f1) \
	  2>/var/log/gnustep-back-common.log || (echo " failed."; exit 1)
	# Remove whitespace in directories.
	for dir in *\ */; do
	  mv "$dir" `echo $dir | tr -d [:space:]`
	done
	echo " done."
    ;;

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

    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac



exit 0