profanity 0.4.2 (new formula)

master
Fabian Freyer 2014-08-08 15:30:00 +02:00 committed by Mike McQuaid
parent 30324bbcc4
commit 4669d4653e
1 changed files with 31 additions and 0 deletions

31
Formula/profanity.rb Normal file
View File

@ -0,0 +1,31 @@
require "formula"
class Profanity < Formula
homepage "http://www.profanity.im/"
url "http://www.profanity.im/profanity-0.4.2.tar.gz"
sha1 "1af17e68a5b6142a996b95168322c88ec4a2720b"
head "https://github.com/boothj5/profanity.git"
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