diff options
Diffstat (limited to 'package/stats/Makefile')
-rw-r--r-- | package/stats/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/stats/Makefile b/package/stats/Makefile new file mode 100644 index 000000000..0ff6c26de --- /dev/null +++ b/package/stats/Makefile @@ -0,0 +1,24 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + + +PKG_NAME:= stats +PKG_VERSION:= 82bd4977b607b8714f361467e37a9d801ff911b6 +PKG_RELEASE:= 1 +PKG_DESCR:= Rusty Russell\'s stats utility +PKG_SECTION:= sys/utils +PKG_URL:= https://github.com/rustyrussell/stats +PKG_SITES:= git://github.com/rustyrussell/stats.git + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,STATS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +post-install: + $(INSTALL_DIR) $(IDIR_STATS)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/local/bin/stats \ + $(IDIR_STATS)/usr/bin + +include ${ADK_TOPDIR}/mk/pkg-bottom.mk |