summaryrefslogtreecommitdiff
path: root/editors/abiword/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'editors/abiword/INSTALL')
-rw-r--r--editors/abiword/INSTALL29
1 files changed, 29 insertions, 0 deletions
diff --git a/editors/abiword/INSTALL b/editors/abiword/INSTALL
new file mode 100644
index 00000000000..ea3ead78eb2
--- /dev/null
+++ b/editors/abiword/INSTALL
@@ -0,0 +1,29 @@
+#! /bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2001/10/31 21:22:30 zuntum Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+MKDIR="@MKDIR@"
+LN="@LN@"
+RM="@RM@"
+
+ABIDIR=${PKG_PREFIX}/share/AbiSuite
+
+case ${STAGE} in
+PRE-INSTALL)
+ ;;
+
+POST-INSTALL)
+ ${MKDIR} ${ABIDIR}/dictionary
+ ${RM} -f ${ABIDIR}/dictionary/american.hash
+ ${LN} -sf ../../../lib/american.hash ${ABIDIR}/dictionary/american.hash
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0