summaryrefslogtreecommitdiff
path: root/misc/staroffice/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'misc/staroffice/INSTALL')
-rwxr-xr-xmisc/staroffice/INSTALL20
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/staroffice/INSTALL b/misc/staroffice/INSTALL
new file mode 100755
index 00000000000..9ff9f43f600
--- /dev/null
+++ b/misc/staroffice/INSTALL
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2001/11/01 01:29:39 zuntum Exp $
+#
+
+case $2 in
+ PRE-INSTALL)
+ ;;
+ POST-INSTALL)
+ for i in backup store store/trash download work ; do
+ mkdir -p ${PKG_PREFIX}/Office51/$i
+ done
+ ;;
+ *)
+ echo "Unexpected Argument $2!!"
+ exit 1
+ ;;
+esac
+
+exit 0