aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sipsak.rb
blob: e2a0416dcf255a0288b635b9c5a664ea77fea31c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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