aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sofia-sip.rb
blob: e241316e30cb6cdb995d3c5fd8a50b06a97e0ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class SofiaSip < Formula
  homepage 'http://sofia-sip.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/sofia-sip/sofia-sip/1.12.11/sofia-sip-1.12.11.tar.gz'
  md5 'f3582c62080eeecd3fa4cd5d4ccb4225'

  depends_on 'pkg-config' => :build
  depends_on 'glib'
  depends_on 'gettext'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "#{bin}/localinfo"
    system "#{bin}/sip-date"
  end
end