mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
5d8280e849
OK sthen@, thanks
27 lines
554 B
Makefile
27 lines
554 B
Makefile
COMMENT = command-line tool for controlling Docker
|
|
|
|
V = 20.10.21
|
|
|
|
GH_ACCOUNT = docker
|
|
GH_PROJECT = cli
|
|
GH_TAGNAME = v${V}
|
|
PKGNAME = docker-${DISTNAME}
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://docs.docker.com/engine/reference/commandline/cli/
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES = lang/go
|
|
MODGO_LDFLAGS = -X github.com/docker/cli/cli/version.Version=${V}
|
|
|
|
GO_PKGNAME = github.com/docker/cli
|
|
WRKSRC = ${MODGO_WORKSPACE}/src/${GO_PKGNAME}
|
|
ALL_TARGET = github.com/docker/cli/cmd/docker
|
|
|
|
.include <bsd.port.mk>
|