2016-07-05 00:30:31 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# runc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-11-17 18:00:27 +01:00
|
|
|
RUNC_VERSION = 9c2d8d184e5da67c95d601382adf14862e4f2228
|
2016-07-05 00:30:31 +02:00
|
|
|
RUNC_SITE = $(call github,opencontainers,runc,$(RUNC_VERSION))
|
|
|
|
RUNC_LICENSE = Apache-2.0
|
|
|
|
RUNC_LICENSE_FILES = LICENSE
|
|
|
|
|
|
|
|
RUNC_DEPENDENCIES = host-go
|
|
|
|
|
|
|
|
RUNC_GOPATH = "$(@D)/Godeps/_workspace"
|
|
|
|
RUNC_MAKE_ENV = $(HOST_GO_TARGET_ENV) \
|
|
|
|
CGO_ENABLED=1 \
|
|
|
|
GOBIN="$(@D)/bin" \
|
2016-07-07 20:39:35 +02:00
|
|
|
GOPATH="$(RUNC_GOPATH)" \
|
|
|
|
PATH=$(BR_PATH)
|
2016-07-05 00:30:31 +02:00
|
|
|
|
|
|
|
RUNC_GLDFLAGS = \
|
2016-07-24 16:43:47 +02:00
|
|
|
-X main.gitCommit=$(RUNC_VERSION)
|
|
|
|
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
2016-12-21 19:50:46 +01:00
|
|
|
RUNC_GLDFLAGS += -extldflags '-static'
|
2016-07-24 16:43:47 +02:00
|
|
|
endif
|
2016-07-05 00:30:31 +02:00
|
|
|
|
|
|
|
RUNC_GOTAGS = cgo static_build
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
|
|
|
|
RUNC_GOTAGS += seccomp
|
2016-07-06 21:31:45 +02:00
|
|
|
RUNC_DEPENDENCIES += libseccomp host-pkgconf
|
2016-07-05 00:30:31 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
define RUNC_CONFIGURE_CMDS
|
|
|
|
mkdir -p $(RUNC_GOPATH)/src/github.com/opencontainers
|
|
|
|
ln -s $(@D) $(RUNC_GOPATH)/src/github.com/opencontainers/runc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define RUNC_BUILD_CMDS
|
2017-11-17 18:00:27 +01:00
|
|
|
cd $(@D) && $(RUNC_MAKE_ENV) $(HOST_DIR)/bin/go \
|
2016-07-05 00:30:31 +02:00
|
|
|
build -v -o $(@D)/bin/runc \
|
|
|
|
-tags "$(RUNC_GOTAGS)" -ldflags "$(RUNC_GLDFLAGS)" .
|
|
|
|
endef
|
|
|
|
|
|
|
|
define RUNC_INSTALL_TARGET_CMDS
|
|
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/runc $(TARGET_DIR)/usr/bin/runc
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|