mirror of
https://github.com/openwrt/packages.git
synced 2026-06-20 12:10:15 +04:00
f64acded7a
Release notes: https://github.com/containers/conmon/releases/tag/v2.2.1 Upstream moved the install target from libexecdir/podman to bindir; update Package/conmon/install accordingly and refresh 010-remove-libdl-dep.patch for the new context. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=conmon
|
|
PKG_VERSION:=2.2.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/containers/conmon/archive/v$(PKG_VERSION)
|
|
PKG_HASH:=814fb5979a3a4b8576b1f901e606b482bebb41cb7e57926e6d5765ee786b96d3
|
|
|
|
PKG_MAINTAINER:=Oskari Rauta <oskari.rauta@gmail.com>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=libseccomp
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
|
|
define Package/conmon
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Podman conmon
|
|
URL:=https://podman.io
|
|
DEPENDS:=@!arc +glib2 $(INTL_DEPENDS) $(ICONV_DEPENDS)
|
|
endef
|
|
|
|
define Package/conmon/description
|
|
An OCI container runtime monitor.
|
|
|
|
Conmon is a monitoring program and communication tool between
|
|
a container manager (like Podman or CRI-O) and an OCI runtime
|
|
(like runc or crun) for a single container.
|
|
endef
|
|
|
|
define Package/conmon/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/conmon $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,conmon))
|