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.

40 lines
947 B

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