2920a32c71
VIEW-DEINSTALL to the INSTALL/DEINSTALL scripts don't cause errors.
14 lines
221 B
Text
Executable file
14 lines
221 B
Text
Executable file
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.2 2003/08/30 20:22:58 jlam Exp $
|
|
#
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
for i in backup store store/trash download work ; do
|
|
mkdir -p ${PKG_PREFIX}/Office51/$i
|
|
done
|
|
;;
|
|
esac
|
|
|
|
exit 0
|