New Formula: sipsak

sipsak is a small command line tool for developers and administrators of
Session Initiation Protocol (SIP) applications. It can be used for some
simple tests on SIP applications and devices.

Signed-off-by: David Höppner <0xffea@gmail.com>

* correct man path
master
Joshua Priddle 2010-03-28 22:14:00 -04:00 committed by David Höppner
parent fe579101cb
commit 9e38c0309c
1 changed files with 13 additions and 0 deletions

13
Formula/sipsak.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Sipsak <Formula
url 'http://download.berlios.de/sipsak/sipsak-0.9.6-1.tar.gz'
homepage 'http://sipsak.org/'
md5 'c4eb8e282902e75f4f040f09ea9d99d5'
version '0.9.6'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end