homebrew-core/Formula/bonnie.rb
Jan Lehnardt 818a00b0bb 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.
2010-01-30 14:18:04 +01:00

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