blob: 4e6ba3ea9c1b7bbeb674ec5eed1fe5b5a207559e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | class Sipsak < Formula
  homepage "https://sourceforge.net/projects/sipsak.berlios/"
  url "https://downloads.sourceforge.net/project/sipsak.berlios/sipsak-0.9.6-1.tar.gz"
  version "0.9.6"
  sha1 "6d2fd2c90ea04be749e48927b3e7fc08c52166b6"
  bottle do
    cellar :any
    sha1 "0887f7a2fc31fa4dac20abc09b3978102ceb585e" => :yosemite
    sha1 "0792fa0643ed06e407ee67fdf34a0bca6ef93fdd" => :mavericks
    sha1 "bd7856973c90e54510f7d5b6305f032bd0f006fa" => :mountain_lion
  end
  depends_on "openssl"
  def install
    ENV.append "CFLAGS", "-std=gnu89"
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make", "install"
  end
  test do
    system "#{bin}/sipsak", "-V"
  end
end
 |