blob: 22b327ae28b8134de8524c0e60540103fac1cef4 (
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
38
39
40
41
42
|
require 'formula'
class Pidgin < Formula
homepage 'http://pidgin.im/'
url 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.10.7/pidgin-2.10.7.tar.bz2'
sha1 '01bc06e3a5712dded3ad4a4913ada12a3cd01e15'
depends_on :x11
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'gettext'
depends_on 'gnutls'
depends_on 'gtk+'
option 'perl', 'Build pidgin with perl support'
def install
args = %W[
--disable-debug
--prefix=#{prefix}
--disable-avahi
--disable-dbus
--disable-gevolution
--disable-gstreamer
--disable-gstreamer-interfaces
--disable-gtkspell
--disable-idn
--disable-meanwhile
--disable-vv
--enable-gnutls=yes
]
args << '--disable-perl' unless build.include? 'perl'
system "./configure", *args
system "make install"
end
test do
system "#{bin}/pidgin --version"
end
end
|