summaryrefslogtreecommitdiff
path: root/community/bonnie++/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/bonnie++/PKGBUILD')
-rw-r--r--community/bonnie++/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/bonnie++/PKGBUILD b/community/bonnie++/PKGBUILD
new file mode 100644
index 000000000..55800b024
--- /dev/null
+++ b/community/bonnie++/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: jelle van der Waa <jelle@vdwaa.nl>
+# Contributor: eric <eric@archlinux.org>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+
+pkgname=bonnie++
+pkgver=1.03e
+pkgrel=4
+pkgdesc="Based on the Bonnie hard drive benchmark by Tim Bray"
+arch=('i686' 'x86_64')
+url="http://www.coker.com.au/bonnie++/"
+license=('GPL')
+depends=('perl')
+source=(http://www.coker.com.au/bonnie++/$pkgname-$pkgver.tgz)
+sha256sums=('cb3866116634bf65760b6806be4afa7e24a1cad6f145c876df8721f01ba2e2cb')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ sed -i "s:CFLAGS=-O2 -DNDEBUG \$(WFLAGS) \$(MORECFLAGS):CFLAGS=${CFLAGS}:" Makefile
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make prefix="${pkgdir}/usr" install
+}
+