forked from Lainports/freebsd-ports
Plpgsql_check is next generation of plpgsql_lint. It allows to check source code by explicit call plpgsql_check_function. The SQL statements inside PL/pgSQL functions are checked by validator for semantic errors. These errors can be found by plpgsql_check_function. PostgreSQL 9.2 is required, PostgreSQL 9.3, 9.4, 9.5, 9.6 and 10 are supported. WWW: https://github.com/okbob/plpgsql_check PR: 219680 Submitted by: Jov <amutu@amutu.com>
30 lines
663 B
Makefile
30 lines
663 B
Makefile
# Created by: Jov <amutu@amutu.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= plpgsql_check
|
|
PORTVERSION= 1.2.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= amutu@amutu.com
|
|
COMMENT= PostgreSQL extension to check PL/pgSQL code
|
|
|
|
LICENSE= UNKNOWN
|
|
LICENSE_NAME= postcardware
|
|
LICENSE_TEXT= If you like it - send a postcard to address: \
|
|
Pavel Stehule \
|
|
Skalice 12 \
|
|
Benesov u Prahy \
|
|
256 01 \
|
|
Czech Republic \
|
|
Use this code freely on own risk
|
|
LICENSE_PERMS= dist-mirror pkg-mirror dist-sell pkg-sell auto-accept
|
|
|
|
USES= gmake pgsql:9.2+
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= okbob
|
|
|
|
WANT_PGSQL= server
|
|
|
|
.include <bsd.port.mk>
|