From 09d575d96f4d07f32caadd317423147fbd18d167 Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Thu, 2 Aug 2012 21:39:16 -0400 Subject: pigdin 2.10.7 This is the X11 chat client. Note that this variously conflicts with finch (command-line client) and libpurple (chat library), so will be sorted out later. Closes #13901. --- Library/Formula/pidgin.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Library/Formula/pidgin.rb (limited to 'Library/Formula') diff --git a/Library/Formula/pidgin.rb b/Library/Formula/pidgin.rb new file mode 100644 index 000000000..35eea8306 --- /dev/null +++ b/Library/Formula/pidgin.rb @@ -0,0 +1,28 @@ +require 'formula' + +class Pidgin < Formula + homepage 'http://pidgin.im/' + url 'http://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 'gettext' + depends_on 'gnutls' + depends_on 'gtk+' + depends_on 'intltool' + + def install + system "./configure", "--disable-debug", "--disable-gevolution", + "--enable-gnutls=yes", "--disable-gtkspell", + "--disable-vv", "--disable-meanwhile", + "--disable-avahi", "--disable-dbus", + "--disable-gstreamer-interfaces", "--disable-gstreamer", + "--disable-idn", "--prefix=#{prefix}" + system "make install" + end + + def test + system "pidgin --version" + end +end -- cgit v1.2.3