updated on Mon Jan 23 16:10:15 UTC 2012
[aur-mirror.git] / filebench / PKGBUILD
blob267b872532a7359632587df232b6bb2a952ccd54
1 # Contributor: Luis Useche <useche@gmail.com>
3 pkgname=filebench
4 pkgver=1.4.4
5 pkgrel=1
6 pkgdesc="FileBench is a framework of file system workloads for measuring and comparing file system performance"
7 arch=(i686)
8 url="http://opensolaris.org/os/community/performance/filebench/"
9 license=('CDDL')
10 depends=(perl libaio libtecla)
11 options=(docs)
12 install=
13 source=(http://internap.dl.sourceforge.net/sourceforge/filebench/$pkgname-$pkgver.tar.gz filebench.patch)
14 md5sums=('7134e8979e1216f6fc3b85679dfbf5b5'
15          '8587af23ebd4584d62e6ab92eb604065')
17 build() {
18   cd "$srcdir/$pkgname-$pkgver"
19   
20   patch -p1 < ../../filebench.patch
22   aclocal
23   autoconf
24   autoheader
25   automake --add-missing --copy
26   ./configure --prefix=/usr
27   make || return 1
28   make DESTDIR="$pkgdir/" install
31 # vim:set ts=2 sw=2 et: