File: postinst

package info (click to toggle)
tipa 19960624-6
  • links: PTS
  • area: main
  • in suites: potato
  • size: 888 kB
  • ctags: 27
  • sloc: perl: 1,636; sh: 256; makefile: 83; lisp: 14
file content (24 lines) | stat: -rw-r--r-- 536 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh -
# postinst of package ibrazilian
# Adapted from postinst script of package iamerican by Rafael
#    Laboissiere <rafael@icp.inpg.fr> on Fri, 19 Jun 1998 11:51:11 +0200
# Modified by Rafael Laboissiere <rafael@icp.inpg.fr> 
# Thu Jun 10 11:50:53 CEST 1999

set -e

case "$1" in
    configure)     
      if [ -x /usr/bin/texhash ] ; then \
         /usr/bin/texhash ; \
      fi
        ;;
    abort-upgrade | abort-deconfigure | abort-remove)
	;;
    *)
	echo "$0: incorrect arguments: $*" >&2
	exit 1
	;;
esac

#DEBHELPER#