9e38c0309c
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
13 lines
365 B
Ruby
13 lines
365 B
Ruby
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
|