diff options
| author | Michael Mior | 2012-08-02 21:39:16 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-02 08:21:48 -0700 |
| commit | 09d575d96f4d07f32caadd317423147fbd18d167 (patch) | |
| tree | 45b094744f9123c8528c60c4e0c7b18cd71322d3 /Library/Formula | |
| parent | 0bd215d1f475e8f984273c1eaf801dba9bfbeafa (diff) | |
| download | homebrew-09d575d96f4d07f32caadd317423147fbd18d167.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pidgin.rb | 28 |
1 files changed, 28 insertions, 0 deletions
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 |
