9ee49c5fdf
These components have been updated: - buildah from 1.38.1 to 1.40.1 - podman from 5.3.2 to 5.5.1 - skopeo from 1.17.0 to 1.19.0 PR: 287607 Approved by: dfr (maintainer) Differential Revision: https://reviews.freebsd.org/D49184
31 lines
932 B
Makefile
31 lines
932 B
Makefile
PORTNAME= skopeo
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.19.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= dfr@FreeBSD.org
|
|
COMMENT= Inspect container images and repositories on registries
|
|
WWW= https://github.com/containers/skopeo
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= bash:shells/bash \
|
|
curl:ftp/curl \
|
|
go-md2man:textproc/go-md2man
|
|
LIB_DEPENDS= libgpgme.so:security/gpgme
|
|
RUN_DEPENDS= ${LOCALBASE}/etc/containers/containers.conf.sample:sysutils/containers-common
|
|
|
|
USES= gmake go:modules,no_targets,1.23 pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= containers
|
|
|
|
do-install:
|
|
${SETENV} ${MAKE_ENV} ${GO_ENV} ${GMAKE} -C ${WRKSRC} \
|
|
DESTDIR=${STAGEDIR} GOCACHE=${TMPDIR} \
|
|
GO=${GO_CMD} install-binary install-docs install-completions
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/containers/registries.d
|
|
${INSTALL_DATA} ${WRKSRC}/default.yaml ${STAGEDIR}${PREFIX}/etc/containers/registries.d/default.yaml
|
|
|
|
.include <bsd.port.mk>
|