summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7bfb8bb3bac184b94a9438a2e5661885a1fe634a (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
26
27
28
29
30
31
32
# Contributor: Luis Useche <useche@gmail.com>
# Contributor: Hubert Kario <kario@wit.edu.pl>
# Contributor: Maxime Lorrillere <maxime.lorrillere@gmail.com>

pkgname=filebench
pkgver=1.4.9.1
pkgrel=2
pkgdesc="FileBench is a framework of file system workloads for measuring and comparing file system performance"
arch=(i686 x86_64)
url="http://filebench.sourceforge.net"
license=('CDDL')
depends=(perl libaio libtecla)
options=(docs)
install=
source=(http://downloads.sourceforge.net/sourceforge/filebench/$pkgname-$pkgver.tar.gz)
md5sums=('e30a4feb78ce5e8224c7ec15fd337e42')
         

build() {
  cd "$srcdir/$pkgname-$pkgver"
  
  ./configure --prefix=/usr
  make || return 1
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: