Makefile 976 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= atop
  5. PKG_VERSION:= 2.12.1
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 0f49f3aa5e3449f8c1cf10ac08036e2b67887640fe7980b8bc6ca9fd84d46fdf
  8. PKG_DESCR:= performance monitor for linux that is capable of reporting the activity of all processes
  9. PKG_SECTION:= sys/utils
  10. PKG_DEPENDS:= libncurses glib
  11. PKG_BUILDDEP:= ncurses glib
  12. PKG_URL:= https://github.com/Atoptool/atop
  13. PKG_SITES:= https://github.com/Atoptool/atop/archive/refs/tags/
  14. DISTFILES:= v$(PKG_VERSION).tar.gz
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,ATOP,atop,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  17. CONFIG_STYLE:= manual
  18. atop-install:
  19. $(INSTALL_DIR) $(IDIR_ATOP)/usr/bin
  20. $(INSTALL_BIN) $(WRKINST)/usr/bin/atop \
  21. $(IDIR_ATOP)/usr/bin
  22. include $(ADK_TOPDIR)/mk/pkg-bottom.mk