Makefile 748 B

123456789101112131415161718192021222324
  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:= stats
  5. PKG_VERSION:= 82bd4977b607b8714f361467e37a9d801ff911b6
  6. PKG_RELEASE:= 1
  7. PKG_GIT:= hash
  8. PKG_DESCR:= stats utility
  9. PKG_SECTION:= sys/utils
  10. PKG_URL:= https://github.com/rustyrussell/stats
  11. PKG_SITES:= git://github.com/rustyrussell/stats.git
  12. include $(ADK_TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,STATS,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  14. stats-install:
  15. $(INSTALL_DIR) $(IDIR_STATS)/usr/bin
  16. $(INSTALL_BIN) $(WRKINST)/usr/bin/stats \
  17. $(IDIR_STATS)/usr/bin
  18. include $(ADK_TOPDIR)/mk/pkg-bottom.mk