blob: f1b86239209854fa77bc01f0ab7b31505c1e0fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Bonnie < Formula
homepage 'http://code.google.com/p/bonnie-64/'
head 'http://bonnie-64.googlecode.com/svn/trunk/'
def install
system "make"
bin.install "Bonnie" => "bonnie"
end
end
|