stress: update to 1.0.5
[feed/packages.git] / utils / stress / Makefile
1 #
2 # Copyright (C) 2006-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=stress
11 PKG_RELEASE:=1
12
13 PKG_SOURCE_PROTO:=git
14 PKG_SOURCE_VERSION:=1.0.5
15 PKG_SOURCE_URL:=https://github.com/resurrecting-open-source-projects/stress
16 PKG_MIRROR_HASH:=711e42ead6fd220a98821aae0cf024930785e439d3d0d50663fed1b2cd021bd1
17
18 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
19 PKG_LICENSE:=GPL-2.0-only
20 PKG_LICENSE_FILES:=COPYING
21
22 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1
24 PKG_BUILD_PARALLEL:=1
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/stress
29 SECTION:=utils
30 CATEGORY:=Utilities
31 TITLE:=stress is a simple stress utility
32 URL:=
33 endef
34
35 define Package/stress/description
36 stress is a simple tool that imposes certain types of compute \ stress on
37 UNIX-like operating systems.
38 endef
39
40 define Package/stress/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/stress $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,stress))