kumquat-buildroot/package/flannel/flannel.mk
Geoff Levand a9f273b673 package/flannel: bump version to 0.14.0
Bump flannel version from 0.12.0 to 0.14.0.

Signed-off-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021-07-18 23:26:40 +02:00

23 lines
735 B
Makefile

################################################################################
#
# flannel
#
################################################################################
FLANNEL_VERSION = 0.14.0
FLANNEL_SITE = https://github.com/flannel-io/flannel/archive
FLANNEL_SOURCE = v$(FLANNEL_VERSION).tar.gz
FLANNEL_LICENSE = Apache-2.0
FLANNEL_LICENSE_FILES = LICENSE
FLANNEL_LDFLAGS = -X github.com/flannel-io/flannel/version.Version=$(FLANNEL_VERSION)
# Install flannel to its well known location.
define FLANNEL_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/bin/flannel $(TARGET_DIR)/opt/bin/flanneld
$(INSTALL) -D -m 0755 $(@D)/dist/mk-docker-opts.sh $(TARGET_DIR)/opt/bin/mk-docker-opts.sh
endef
$(eval $(golang-package))