summaryrefslogtreecommitdiff
path: root/community/fio/PKGBUILD
blob: ef83cbd821f73c65a34a1fca014751e7dd0940a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Maintainer: Thomas S Hatch <thatch45@gmail.com>
pkgname=fio
pkgver=1.50
pkgrel=2
pkgdesc="I/O tool meant to be used both for benchmark and stress/hardware verification"
arch=('x86_64' 'i686')
url="http://freshmeat.net/projects/fio"
license=('GPL2')
makedepends=('gcc')
depends=('libaio')
noextract=()
source=("http://brick.kernel.dk/snaps/fio-${pkgver}.tar.bz2")
md5sums=('e28fe02e4a5ced7aaa1dddf6f48c1490')

build() {
    cd $srcdir/fio-${pkgver}
    make
}

package() {
    cd $srcdir/fio-${pkgver}
    make DESTDIR="${pkgdir}" prefix="/usr" mandir="/usr/share/man" install
}