homebrew-core/Formula/bitlbee.rb
Devin Weaver 4a0a4b3cbd Adds new formula: bitlbee
Adds new Bitlbee formula for version 1.2.7

    BitlBee brings IM (instant messaging) to IRC clients. It's a great
    solution for people who have an IRC client running all the time and
    don't want to run an additional MSN/AIM/whatever client.

    BitlBee currently supports the following IM networks/protocols:
    XMPP/Jabber (including Google Talk), MSN Messenger, Yahoo!
    Messenger, AIM and ICQ.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-30 08:20:06 -07:00

32 lines
1.2 KiB
Ruby

require 'formula'
class Bitlbee <Formula
url 'http://get.bitlbee.org/src/bitlbee-1.2.7.tar.gz'
homepage 'http://www.bitlbee.org/'
md5 '46cb8c0a930970cccd09dce4b3155cae'
depends_on 'glib'
depends_on 'gnutls'
def install
# By default Homebrew will set ENV['LD'] to the same as ENV['CC'] which
# defaults to /usr/bin/cc (see Library/Homebrew/extend/ENV.rb:39) However
# this will break as bitlbee uses one of those odd and rare Makefiles that
# can't handle the linker being 'cc' and must be 'ld' (don't ask me some C
# magician will know).
ENV['LD'] = '/usr/bin/ld'
# Homebrew should handlle the stripping.
# Should we use --config=/usr/local/var/lib/bitlbee/ ?
system "./configure", "--debug=0", "--strip=0", "--ssl=gnutls", "--pidfile=#{var}/bitlbee/run/bitlbee.pid", "--config=#{var}/bitlbee/lib/", "--ipsocket=#{var}/bitlbee/run/bitlbee.sock", "--prefix=#{prefix}"
# This build depends on make running first.
system "make"
system "make install"
# This build has an extra step.
system "make install-etc"
(var+"bitlbee").mkpath
(var+"bitlbee"+"run").mkpath
(var+"bitlbee"+"lib").mkpath
end
end