homebrew-core/Formula/sipsak.rb
Viktor Szakáts d903e6903a sipsak: use https homepage
Closes Homebrew/homebrew#37099.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-23 14:35:29 +00:00

28 lines
838 B
Ruby

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