pkgsrc/databases/phpmyadmin5/INSTALL
tm 4547c3f68f phpmyadmin5: import phpmyadmin version 5.1.3
As phpMyAdmin version 4 is currently supported for security fixes only
the latest stable version is imported as an extra package.

phpMyAdmin 5 is compatible with PHP 7.1 and newer and MySQL/MariaDB 5.5
and newer.
2022-04-22 19:28:59 +00:00

15 lines
326 B
Text

# $NetBSD: INSTALL,v 1.1 2022/04/22 19:28:59 tm Exp $
APACHE_USER=@APACHE_USER@
APACHE_GROUP=@APACHE_GROUP@
PMVARDIR=@PMVARDIR@
case ${STAGE} in
POST-INSTALL)
if [ ! -d ${PMVARDIR}/tmp ]; then
${MKDIR} -p ${PMVARDIR}/tmp
${CHOWN} -R ${APACHE_USER}:${APACHE_GROUP} ${PMVARDIR}
${CHMOD} -R 755 ${PMVARDIR}
fi
;;
esac