From: hauke Date: Sat, 30 Jan 2016 14:29:16 +0000 (+0000) Subject: stress: moved to github X-Git-Url: https://git.archive.openwrt.org/?p=packages.git;a=commitdiff_plain;h=3b40743b936eaf8c0ede106fe35123bafaf72af9 stress: moved to github Signed-off-by: Hauke Mehrtens git-svn-id: svn://svn.openwrt.org/openwrt/packages@48569 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/stress/Makefile b/utils/stress/Makefile deleted file mode 100644 index 12203fadc..000000000 --- a/utils/stress/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# -# Copyright (C) 2006-2010 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.4 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://weather.ou.edu/~apw/projects/stress -PKG_MD5SUM:=a607afa695a511765b40993a64c6e2f4 - -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/stress - SECTION:=utils - CATEGORY:=Utilities - 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_INSTALL_DIR)/usr/bin/stress $(1)/usr/bin/ -endef - -$(eval $(call BuildPackage,stress))