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:
parent
facc5a3bf8
commit
818a00b0bb
1 changed files with 15 additions and 0 deletions
15
Formula/bonnie.rb
Normal file
15
Formula/bonnie.rb
Normal 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
|
Loading…
Reference in a new issue