mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
675 B
Bash
23 lines
675 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
|
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
|
|
|
|
pkgname=stress
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="A tool that stress tests your system (CPU, memory, I/O, disks)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://weather.ou.edu/~apw/projects/stress/"
|
|
license=('GPL')
|
|
options=('!emptydirs')
|
|
source=(http://weather.ou.edu/~apw/projects/stress/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('d693ff044ac7d34f8aaea202cd96f679')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|