mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
28 lines
765 B
Makefile
28 lines
765 B
Makefile
COMMENT= GCP Cloud SQL Auth proxy
|
|
|
|
VERSION= 2.22.1
|
|
PKGNAME= cloud-sql-proxy-${VERSION}
|
|
|
|
# cloud-sql-proxy-vendored distfile generated by fetching archive from
|
|
# https://github.com/GoogleCloudPlatform/cloud-sql-proxy/archive/v$VERSION/cloud-sql-proxy-$VERSION.tar.gz
|
|
# and running "go mod tidy" + "go mod vendor"
|
|
DISTNAME= cloud-sql-proxy-vendored-${VERSION}
|
|
SITES= https://distfiles.bsdfrog.org/
|
|
ALL_TARGET= github.com/GoogleCloudPlatform/cloud-sql-proxy
|
|
|
|
CATEGORIES= sysutils databases net
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# Apache-2.0
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES= lang/go
|
|
|
|
# Dockerfile
|
|
MODGO_LDFLAGS += -X github.com/GoogleCloudPlatform/cloud-sql-proxy/v2/cmd.metadataString=openbsd
|
|
|
|
.include <bsd.port.mk>
|