File: freetype-tools.postinst

package info (click to toggle)
freetype 1.3.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 6,652 kB
  • ctags: 6,860
  • sloc: ansic: 47,576; pascal: 13,773; sh: 7,513; makefile: 786; cpp: 351; csh: 53; perl: 13
file content (18 lines) | stat: -rw-r--r-- 489 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# postinst script for the Debian GNU/Linux freetype-tools package
#   by Anthony Fok <foka@debian.org>
#   This is free software; see the GNU General Public Licence
#   version 2 or later for copying conditions.  There is NO warranty.
#   Last modified: Thu, 22 Apr 1999 15:34:20 -0600

set -e

if [ "$1" = "configure" ] ; then
	if [ -x /usr/bin/mktexlsr ]; then
		echo " Running /usr/bin/mktexlsr /usr/share/texmf ..."
		/usr/bin/mktexlsr /usr/share/texmf
	fi
fi

#DEBHELPER#