26 lines
786 B
Makefile
26 lines
786 B
Makefile
################################################################################
|
|
#
|
|
# conmon
|
|
#
|
|
################################################################################
|
|
|
|
CONMON_VERSION = v2.0.6
|
|
CONMON_COMMIT = 29c336700f2999acf9db07662b4a61355076e64a
|
|
CONMON_SITE = https://github.com/containers/conmon/archive
|
|
CONMON_SOURCE = $(CONMON_VERSION).tar.gz
|
|
CONMON_LICENSE = Apache-2.0
|
|
CONMON_LICENSE_FILES = LICENSE
|
|
|
|
CONMON_DEPENDENCIES = host-pkgconf
|
|
|
|
define CONMON_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) GIT_COMMIT=$(CONMON_COMMIT) PREFIX=/usr
|
|
endef
|
|
|
|
define CONMON_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -Dm755 $(@D)/bin/conmon $(TARGET_DIR)/usr/libexec/crio/conmon
|
|
$(INSTALL) -Dm755 $(@D)/bin/conmon $(TARGET_DIR)/usr/libexec/podman/conmon
|
|
endef
|
|
|
|
$(eval $(generic-package))
|