mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 15:33:28 +08:00
2a30a722f7
Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
699 B
Makefile
22 lines
699 B
Makefile
################################################################################
|
|
#
|
|
# flannel
|
|
#
|
|
################################################################################
|
|
|
|
FLANNEL_VERSION = 0.25.7
|
|
FLANNEL_SITE = $(call github,flannel-io,flannel,v$(FLANNEL_VERSION))
|
|
|
|
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))
|