homebrew-core/Formula/sipsak.rb
2015-06-05 14:47:57 +01:00

29 lines
868 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"
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