summaryrefslogtreecommitdiff
path: root/community/stress/PKGBUILD
blob: af112e5c5cf06c65fa4fb03e92263e0d14c15a67 (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 107849 2014-03-20 10:29:43Z bluewind $
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=stress
pkgver=1.0.4
pkgrel=4
pkgdesc="A tool that stress tests your system (CPU, memory, I/O, disks)"
arch=('i686' 'x86_64')
url="http://people.seas.harvard.edu/~apw/stress/"
license=('GPL')
options=('!emptydirs')
source=(http://people.seas.harvard.edu/~apw/stress/${pkgname}-${pkgver}.tar.gz)
md5sums=('890a4236dd1656792f3ef9a190cf99ef')

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

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