Makefile 732 B

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