16 lines
250 B
Text
16 lines
250 B
Text
|
#!/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
|