summaryrefslogtreecommitdiff
path: root/misc/rpm/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'misc/rpm/INSTALL')
-rwxr-xr-xmisc/rpm/INSTALL32
1 files changed, 32 insertions, 0 deletions
diff --git a/misc/rpm/INSTALL b/misc/rpm/INSTALL
new file mode 100755
index 00000000000..f5b1799e914
--- /dev/null
+++ b/misc/rpm/INSTALL
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2001/11/01 01:29:26 zuntum Exp $
+#
+
+PKGNAME=$1
+STAGE=$2
+
+MKDIR="@MKDIR@"
+
+RPM=${PKG_PREFIX}/bin/rpm
+RPMDIR=/var/pkg/lib/rpm
+
+case ${STAGE} in
+PRE-INSTALL)
+ ;;
+
+POST-INSTALL)
+ ${MKDIR} ${RPMDIR}
+ if ! ${RPM} -qa 2>/dev/null
+ then
+ echo "${PKGNAME}: initializing the RPM database..."
+ ${RPM} --initdb
+ fi
+ ;;
+
+*)
+ echo "Unexpected argument ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0