Skip to content

Commit

Permalink
profanity 0.4.2 (new formula)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianfreyer authored and MikeMcQuaid committed Aug 8, 2014
1 parent 30324bb commit 4669d46
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Formula/profanity.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4669d46

Please sign in to comment.