44da8f9536
PostgreSQL Audit Extension (pgAudit) provides detailed session and/or object audit logging via the standard PostgreSQL logging facility. PR: 268198 Reported by: gehaowu@bitmoe.com
27 lines
597 B
Makefile
27 lines
597 B
Makefile
PORTNAME= pgaudit
|
|
#DISTVERSIONPREFIX= v
|
|
PORTVERSION= 1.7.0
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S|.||}-
|
|
|
|
MAINTAINER= gehaowu@bitmoe.com
|
|
COMMENT= PostgreSQL Audit Extension
|
|
WWW= https://www.pgaudit.org/
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
USES= gmake pgsql:14+
|
|
WANT_PGSQL= server
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pgaudit
|
|
|
|
MAKE_ENV= USE_PGXS=1
|
|
|
|
PLIST_FILES= lib/postgresql/pgaudit.so \
|
|
share/postgresql/extension/pgaudit--1.7.sql \
|
|
share/postgresql/extension/pgaudit.control
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pgaudit.so
|
|
|
|
.include <bsd.port.mk>
|