summaryrefslogtreecommitdiff
path: root/community/bonnie++
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-18 05:50:22 +0000
committerroot <root@rshg047.dnsready.net>2011-04-18 05:50:22 +0000
commit6ca29e0c62691c1f3120dda0f6b59dbb86cc9295 (patch)
treef5316be783bd7c6686356e0dcd4c5ed9777e1eb4 /community/bonnie++
parent049af7a95b01eba14d33586ad5852dddaf107e53 (diff)
Mon Apr 18 05:50:22 UTC 2011
Diffstat (limited to 'community/bonnie++')
-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
+}
+