diff options
| author | Joshua Priddle | 2010-03-28 22:14:00 -0400 |
|---|---|---|
| committer | David Höppner | 2010-03-29 12:41:11 +0200 |
| commit | 4d9cdd000edb4863b80d8fc20e7eb6d99fe2c238 (patch) | |
| tree | a168f5eec37d38a366255a64554d184760b126f0 /Library/Formula | |
| parent | abe22999129263329a8ecfa87c7aabe4032ae332 (diff) | |
| download | homebrew-4d9cdd000edb4863b80d8fc20e7eb6d99fe2c238.tar.bz2 | |
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
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sipsak.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/sipsak.rb b/Library/Formula/sipsak.rb new file mode 100644 index 000000000..ec57515e0 --- /dev/null +++ b/Library/Formula/sipsak.rb @@ -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 |
