forked from Lainports/freebsd-ports
Replace GL_COMMIT by GL_TAGNAME in all ports. The new GL_TAGNAME is backwards-compatible (accepting any commit hash as before), but also understands an actual tag name. Moving to tag names where appropriate is left to individual ports' maintainers. Approved by: portmgr (tcberner, mentor) Differential Revision: https://reviews.freebsd.org/D37077
26 lines
613 B
Makefile
26 lines
613 B
Makefile
PORTNAME= pg_ed25519
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= dmitry.wagin@ya.ru
|
|
COMMENT= PostgreSQL extension for ed25519 sign and verify
|
|
WWW= https://gitlab.com/dwagin/pg_ed25519
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= gmake pgsql:11+
|
|
LLD_UNSAFE= yes
|
|
WANT_PGSQL= server
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= dwagin
|
|
GL_TAGNAME= 203944dbd3444257490eb30d2f6363e391a23a6b
|
|
|
|
PLIST_FILES= lib/postgresql/pg_ed25519.so \
|
|
share/postgresql/extension/pg_ed25519--${PORTVERSION}.sql \
|
|
share/postgresql/extension/pg_ed25519.control
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_ed25519.so
|
|
|
|
.include <bsd.port.mk>
|