packages/utils/stress/Makefile
florian a72578d646 Update stress to 1.0.0 (#3697)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@11635 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-07-05 10:23:59 +00:00

45 lines
991 B
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=stress
PKG_VERSION:=1.0.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://weather.ou.edu/~apw/projects/stress/
PKG_MD5SUM:=d693ff044ac7d34f8aaea202cd96f679
include $(INCLUDE_DIR)/package.mk
define Package/stress
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=@LINUX_2_6
TITLE:=stress is a simple stress utility
URL:=http://weather.ou.edu/~apw/projects/stress/
endef
define Package/stress/description
stress is a simple tool that imposes certain types of compute \ stress
on UNIX-like operating systems.
endef
CONFIGURE_ARGS += \
--prefix="/usr"
MAKE_FLAGS += \
CFLAGS="$(TARGET_CFLAGS)"
define Package/stress/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/stress $(1)/usr/bin
endef
$(eval $(call BuildPackage,stress))