The Devfile Parser library is a Golang module that: - parses a devfile as specified by the api & schema. - writes to the specified devfile with the updated data. - generates Kubernetes objects for the various devfile resources. - defines util functions for the devfile. - downloads resources from a parent devfile if specified in the devfile.
20 lines
397 B
Makefile
20 lines
397 B
Makefile
PORTNAME= devfile
|
|
PORTVERSION= 2.3.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Generate Kubernetes objects from a devfile and accessing the devfile registry
|
|
WWW= https://github.com/devfile/library
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= github.com/devfile/library/v2
|
|
|
|
PLIST_FILES= bin/devfile
|
|
|
|
.include <bsd.port.mk>
|