blob: e92d65ad09d57c4c5c61100f277bf79fe3f2d416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Sipp < Formula
url 'http://downloads.sourceforge.net/project/sipp/sipp/3.2/sipp.svn.tar.gz'
homepage 'http://sipp.sourceforge.net/'
md5 '2a3a60cb4317dcf8eb5482f6a955e4d0'
version '3.2'
def install
system "make", "DESTDIR=#{prefix}"
bin.install "sipp"
end
end
|