finch version 2.7.11 for OS X
The formula for finch was recently updated to version 2.7.11.
To install finch on your Mac, open your Terminal application and run the following commands;
brew update brew install finch
The updated formula is as follows:
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
require 'formula' # Finch is a command-line-only IM client from Pidgin class Finch < Formula homepage 'http://developer.pidgin.im/wiki/Using%20Finch' url 'http://sourceforge.net/projects/pidgin/files/Pidgin/2.7.11/pidgin-2.7.11.tar.bz2' sha256 'a24e2c3118bd47983955d398c9cf5543c12e95527cdf7de9d273a6e92f9d160b' depends_on 'pkg-config' => :build depends_on 'libidn' depends_on 'gettext' depends_on 'glib' depends_on 'intltool' depends_on 'gnutls' def install # To get it to compile, had to configure without support for: # * Sametime (meanwhile) # * Bonjour (avahi) # * Communicating with other programs (d-bus) # * Perl scripting system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-gtkui", "--disable-gstreamer", "--disable-vv", "--disable-meanwhile", "--disable-avahi", "--disable-dbus", "--disable-perl" system "make install" end end
This package, finch, depends on;
pkg-config
libidn
gettext
glib
intltool
gnutls
See which packages depend on finch.













