summaryrefslogtreecommitdiff
path: root/community/stress/PKGBUILD
blob: c755912fdf6fb50775475922172b539601411bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $Id: PKGBUILD 35321 2010-12-18 21:37:40Z ibiru $
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=stress
pkgver=1.0.4
pkgrel=2
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=('a607afa695a511765b40993a64c6e2f4')

build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    ./configure --prefix=/usr --mandir=/usr/share/man
    make
}

package() {
    cd ${srcdir}/${pkgname}-${pkgver}
    make DESTDIR=${pkgdir} install
}