blob: 27e6df91be12065976d0a85c826d4f71a4f7d0a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
require "formula"
class Profanity < Formula
homepage "http://www.profanity.im/"
url "http://www.profanity.im/profanity-0.4.4.tar.gz"
sha1 "c9b8472ccdefc8d3a24c06a4ee9a3f6b0b75794d"
head "https://github.com/boothj5/profanity.git"
bottle do
sha1 "60efcafb41f98c6c19e3404b536fdc405b2f42fb" => :mavericks
sha1 "e7e4ecc29339d07e9e898b0c93a887a0007f42aa" => :mountain_lion
sha1 "040472aa3b48d4470fb652b3ce16c73e5c88983b" => :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
|