Remove INSTALL and DEINSTALL scripts, as requested in pkg/17451 and 18058.
This commit is contained in:
parent
9396443216
commit
d155797ab4
2 changed files with 0 additions and 57 deletions
|
@ -1,28 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 21:22:29 zuntum Exp $
|
||||
|
||||
PKGNAME=$1
|
||||
STAGE=$2
|
||||
|
||||
RM="@RM@"
|
||||
RMDIR="@RMDIR@"
|
||||
TRUE="@TRUE@"
|
||||
|
||||
ABIDIR=${PKG_PREFIX}/share/AbiSuite
|
||||
|
||||
case ${STAGE} in
|
||||
DEINSTALL)
|
||||
${RM} -f ${ABIDIR}/dictionary/american.hash
|
||||
${RMDIR} -p ${ABIDIR}/dictionary 2>/dev/null || ${TRUE}
|
||||
;;
|
||||
|
||||
POST-DEINSTALL)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unexpected argument: ${STAGE}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
exit 0
|
|
@ -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
|
Loading…
Reference in a new issue