a89ef2c84d
* Properly handle local discography when installing/deinstalling the binary package. * Use bsd.pkg.install.mk to preserve local configuration files when reinstalling xmcd.
15 lines
250 B
Text
15 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
|