homebrew-core/Formula/profanity.rb
Dominyk Tiller a2bafa27f8 openssl: disable SSLv2 support.
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles
everything that relies on OpenSSL from the master branch to enforce the
new OpenSSL no-ssl2 rule.
2014-08-24 17:13:48 +01:00

38 lines
1.1 KiB
Ruby

require "formula"
class Profanity < Formula
homepage "http://www.profanity.im/"
url "http://www.profanity.im/profanity-0.4.3.tar.gz"
sha1 "ecd99eba84ad149941491c17c7f69a77fc20de5e"
head "https://github.com/boothj5/profanity.git"
revision 1
bottle do
sha1 "7dcef1770b0ac01814677f714fd7a8d5568cbf34" => :mavericks
sha1 "26843e609428afb61e0df4b0d2075d09d4ae0d2e" => :mountain_lion
sha1 "8dc3cc76203dab0fbd6a2b7ff47a88b8a3bb64b2" => :lion
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
depends_on "libstrophe"
depends_on "glib"
depends_on "openssl"
depends_on "gnutls"
depends_on "libotr" => :recommended
depends_on "terminal-notifier" => :optional
def install
system "./bootstrap.sh"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "profanity", "-v"
end
end