818a00b0bb
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.
15 lines
353 B
Ruby
15 lines
353 B
Ruby
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
|