buildroot/package/flannel/flannel.mk
Geoff Levand d5ad2f9f5b package/flannel: bump version to 0.12.0
Bump flannel version from 0.5.5 to 0.12.0.

Signed-off-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-04-27 21:58:16 +02:00

23 lines
727 B
Makefile

################################################################################
#
# flannel
#
################################################################################
FLANNEL_VERSION = 0.12.0
FLANNEL_SITE = https://github.com/coreos/flannel/archive
FLANNEL_SOURCE = v$(FLANNEL_VERSION).tar.gz
FLANNEL_LICENSE = Apache-2.0
FLANNEL_LICENSE_FILES = LICENSE
FLANNEL_LDFLAGS = -X github.com/coreos/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))