mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Kirill Ponomarev](/assets/img/avatar_default.png)
PR: 221304 Submitted by: maintainer Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11910
28 lines
616 B
Makefile
28 lines
616 B
Makefile
# Created by: Jov <amutu@amutu.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pg_dirtyread
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= amutu@amutu.com
|
|
COMMENT= Read dead but unvacuumed tuples from a PostgreSQL relation
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= gmake pgsql:9.2+
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ChristophBerg
|
|
|
|
WANT_PGSQL= server
|
|
|
|
PLIST_FILES= lib/postgresql/pg_dirtyread.so \
|
|
share/postgresql/extension/pg_dirtyread--1.0.sql \
|
|
share/postgresql/extension/pg_dirtyread.control
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_dirtyread.so
|
|
|
|
.include <bsd.port.mk>
|