New Formula: bonnie++.

Bonnie++ is a benchmark suite that is aimed at performing a number of
simple tests of hard drive and file system performance. Then you can
decide which test is important and decide how to compare different
systems after running it.

Bonnie++ was based on the code for Bonnie by Tim Bray. A summary of the
differences between Bonnie 1.0 and Bonnie++ 1.0 can be found at:

    http://www.coker.com.au/bonnie++/diff.html

Closes Homebrew/homebrew#8050.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
master
mithrandi@mithrandi.net 2011-10-10 15:21:22 +02:00 committed by Charlie Sharpsteen
parent b7cd805dd0
commit 7358904db6
1 changed files with 17 additions and 0 deletions

17
Formula/bonnie++.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Bonniexx < Formula
url 'http://www.coker.com.au/bonnie++/experimental/bonnie++-1.96.tgz'
homepage 'http://www.coker.com.au/bonnie++/'
md5 '7b8594559f00887d2865de1838328b35'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
def test
system "test -e #{sbin}/bonnie++"
end
end