blob: 0c165d51553b60507990a827b6320fa24cbb5eb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Ioping < Formula
homepage 'http://code.google.com/p/ioping/'
url 'https://ioping.googlecode.com/files/ioping-0.7.tar.gz'
sha1 'f841244149830506daca1b052694965d94fe2408'
head 'http://ioping.googlecode.com/svn/trunk/'
def install
system "make"
system "make", "install", "PREFIX=#{prefix}"
end
def test
system "#{bin}/ioping", "-v"
end
end
|