blob: 8ea1556ac3e0777465c4959d3dc4e86c25368e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1 2002/10/08 11:50:04 jlam Exp $
#
XMCDDIR=${PKG_PREFIX}/lib/X11/xmcd
case ${STAGE} in
POST-INSTALL)
#
# Generate the index.html files in the local discography collection.
#
${XMCDDIR}/scripts/genidx
;;
esac
|