12 lines
115 B
Bash
12 lines
115 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
PATH=/bin:/usr/sbin:${PKG_PREFIX}/bin
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
texconfig rehash
|
|
;;
|
|
esac
|