blob: 7d52788e6210b503efa6d2d4e9968f9e74140aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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:= 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)))
stats-install:
$(INSTALL_DIR) $(IDIR_STATS)/usr/bin
$(INSTALL_BIN) $(WRKINST)/usr/bin/stats \
$(IDIR_STATS)/usr/bin
include $(ADK_TOPDIR)/mk/pkg-bottom.mk
|