diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:11:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-28 10:14:39 +0100 |
commit | 3b7e950a2a226d1344e78da8fb10e3cdb92f37a0 (patch) | |
tree | 2bda2f5203b3833e77529fe96884d56e69c8fca3 /package/stats/Makefile | |
parent | 23cfddf360edbac12473a5c6f9e2d85b12992bb3 (diff) |
cleanup phil's submissions
- use () instead of {} in make variables for now
- use PKG_HASH instead of PKG_MD5SUM
- update to latest upstream versions
- use a newline between PKG_* variables and DISTFILES
- use <pkgname>-install instead of post-install
- use lowercase description texts only
- fix some missing PKG_BUILDDEP
- elfutils needs argp, which is not available in uClibc-ng, yet
- PKG_HASH is not required for git sources
Diffstat (limited to 'package/stats/Makefile')
-rw-r--r-- | package/stats/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/package/stats/Makefile b/package/stats/Makefile index 0ff6c26de..7d52788e6 100644 --- a/package/stats/Makefile +++ b/package/stats/Makefile @@ -3,22 +3,21 @@ include $(ADK_TOPDIR)/rules.mk - PKG_NAME:= stats PKG_VERSION:= 82bd4977b607b8714f361467e37a9d801ff911b6 PKG_RELEASE:= 1 -PKG_DESCR:= Rusty Russell\'s stats utility +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})) +$(eval $(call PKG_template,STATS,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) -post-install: +stats-install: $(INSTALL_DIR) $(IDIR_STATS)/usr/bin - $(INSTALL_BIN) $(WRKINST)/usr/local/bin/stats \ + $(INSTALL_BIN) $(WRKINST)/usr/bin/stats \ $(IDIR_STATS)/usr/bin -include ${ADK_TOPDIR}/mk/pkg-bottom.mk +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |