aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDevin Weaver2010-06-29 17:48:55 -0400
committerAdam Vandenberg2010-06-30 08:20:06 -0700
commit3864c81d38600b5c5245b409825bfc232d73457e (patch)
treeae56c224aa200d86b22331ad33ef5b603b1acd2f /Library/Formula
parentaa6984938e1a4a72d2a8859f20275c748a2e8a2d (diff)
downloadhomebrew-3864c81d38600b5c5245b409825bfc232d73457e.tar.bz2
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bitlbee.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/Library/Formula/bitlbee.rb b/Library/Formula/bitlbee.rb
new file mode 100644
index 000000000..0a4377d57
--- /dev/null
+++ b/Library/Formula/bitlbee.rb
@@ -0,0 +1,32 @@
+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