New Formula: Bonnie

Bonnie is a benchmark which measures the performance of Unix file system
operations. Bonnie is concerned with identifying bottlenecks; the name is
a tribute to Bonnie Raitt, who knows how to use one.
This commit is contained in:
Jan Lehnardt 2009-12-22 18:43:11 +01:00 committed by David Höppner
parent facc5a3bf8
commit 818a00b0bb

15
Formula/bonnie.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Bonnie <Formula
url 'http://www.textuality.com/bonnie/bonnie.tar.gz'
homepage 'http://www.textuality.com/bonnie/'
md5 'f61cc061a418c3ae308ae362a1ae6490'
# no real version numbers
version '0.1.0'
def install
system "make"
system "mkdir -p #{prefix}/bin"
system "cp Bonnie #{prefix}/bin/bonnie"
end
end