aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bonnie++.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/bonnie++.rb b/Library/Formula/bonnie++.rb
new file mode 100644
index 000000000..ed1c049f3
--- /dev/null
+++ b/Library/Formula/bonnie++.rb
@@ -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