mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
24 lines
658 B
Makefile
24 lines
658 B
Makefile
################################################################################
|
|
#
|
|
# docker-proxy
|
|
#
|
|
################################################################################
|
|
|
|
DOCKER_PROXY_VERSION = 7b2b1feb1de4817d522cc372af149ff48d25028e
|
|
DOCKER_PROXY_SITE = $(call github,docker,libnetwork,$(DOCKER_PROXY_VERSION))
|
|
|
|
DOCKER_PROXY_LICENSE = Apache-2.0
|
|
DOCKER_PROXY_LICENSE_FILES = LICENSE
|
|
|
|
DOCKER_PROXY_DEPENDENCIES = host-pkgconf
|
|
|
|
DOCKER_PROXY_WORKSPACE = gopath
|
|
|
|
DOCKER_PROXY_BUILD_TARGETS = cmd/proxy
|
|
|
|
define DOCKER_PROXY_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/proxy $(TARGET_DIR)/usr/bin/docker-proxy
|
|
endef
|
|
|
|
$(eval $(golang-package))
|