1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-04-29 21:21:54 +01:00
Files
operating-system/buildroot/package/runc/runc.mk
2018-03-17 23:47:00 +00:00

56 lines
1.3 KiB
Makefile

################################################################################
#
# runc
#
################################################################################
RUNC_VERSION = 6c55f98695e902427906eed2c799e566e3d3dfb5
RUNC_SITE = $(call github,opencontainers,runc,$(RUNC_VERSION))
RUNC_LICENSE = Apache-2.0
RUNC_LICENSE_FILES = LICENSE
RUNC_DEPENDENCIES = host-go
RUNC_GOPATH = $(@D)/gopath
RUNC_MAKE_ENV = $(HOST_GO_TARGET_ENV) \
CGO_ENABLED=1 \
GOBIN="$(@D)/bin" \
GOPATH="$(RUNC_GOPATH)" \
PATH=$(BR_PATH)
RUNC_GLDFLAGS = \
-X main.gitCommit=$(RUNC_VERSION)
ifeq ($(BR2_STATIC_LIBS),y)
RUNC_GLDFLAGS += -extldflags '-static'
RUNC_GOTAGS += static_build
endif
RUNC_GOTAGS = cgo
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
RUNC_GOTAGS += seccomp
RUNC_DEPENDENCIES += libseccomp host-pkgconf
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
cd $(RUNC_GOPATH)/src/github.com/opencontainers/runc; \
$(RUNC_MAKE_ENV) \
$(HOST_DIR)/bin/go build -v -i \
-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))