blob: e916775a62cf2af60daf12ed730a721b479f16cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1 2001/10/31 22:57:15 zuntum Exp $
PKGNAME=$1
STAGE=$2
case ${STAGE} in
PRE-INSTALL)
;;
POST-INSTALL)
# Rebuild the ls-R database after adding files to the teTeX tree.
#
mktexlsr
;;
*)
echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac
exit 0
|