homebrew-core/Formula/sipsak.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

29 lines
894 B
Ruby

class Sipsak < Formula
desc "SIP Swiss army knife"
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"
sha256 "5064c56d482a080b6a4aea71821b78c21b59d44f6d1aa14c27429441917911a9"
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