You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
971 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=conmon
  3. PKG_VERSION:=2.0.26
  4. PKG_RELEASE:=1
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  6. PKG_SOURCE_URL:=https://github.com/containers/$(PKG_NAME)/archive/v$(PKG_VERSION)
  7. PKG_HASH:=845744c3323bbf9adab4444d70fd7de0ceb12a578c9cf2fd2366c6bed0ac7970
  8. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  9. PKG_LICENSE:=Apache-2.0
  10. PKG_LICENSE_FILES:=LICENSE
  11. PKG_BUILD_DEPENDS:=golang/host meson/host
  12. include $(INCLUDE_DIR)/package.mk
  13. include $(INCLUDE_DIR)/nls.mk
  14. include ../../devel/meson/meson.mk
  15. define Package/conmon
  16. SECTION:=utils
  17. CATEGORY:=Utilities
  18. TITLE:=Podmon conmon
  19. URL:=https://podman.io
  20. DEPENDS:=+glib2 $(INTL_DEPENDS) $(ICONV_DEPENDS)
  21. endef
  22. define Package/conmon/description
  23. Podman: A tool for managing OCI containers and pods
  24. endef
  25. define Package/conmon/install
  26. $(INSTALL_DIR) $(1)/usr/bin
  27. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/libexec/podman/conmon $(1)/usr/bin
  28. endef
  29. $(eval $(call BuildPackage,conmon))