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, 0 insertions, 29 deletions
diff --git a/editors/abiword/INSTALL b/editors/abiword/INSTALL
deleted file mode 100644
index ea3ead78eb2..00000000000
--- a/editors/abiword/INSTALL
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /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