2010-06-29 21:48:55 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bitlbee < Formula
|
2010-06-29 21:48:55 +00:00
|
|
|
homepage 'http://www.bitlbee.org/'
|
2013-01-21 20:30:38 +00:00
|
|
|
url 'http://get.bitlbee.org/src/bitlbee-3.2.tar.gz'
|
|
|
|
sha1 '21e17f082c776566429603b1e8c966983a75ac9e'
|
2010-06-29 21:48:55 +00:00
|
|
|
|
2012-08-09 05:14:02 +00:00
|
|
|
option 'purple', "Use libpurple for all communication with instant messaging networks"
|
2012-10-02 23:31:12 +00:00
|
|
|
option 'with-otr', "Build with otr (off the record) support"
|
2012-08-09 05:14:02 +00:00
|
|
|
|
2012-12-02 07:19:29 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2013-01-21 20:30:38 +00:00
|
|
|
depends_on 'glib'
|
2010-06-29 21:48:55 +00:00
|
|
|
depends_on 'gnutls'
|
2012-11-15 18:27:17 +00:00
|
|
|
depends_on 'libgcrypt'
|
2012-10-02 23:31:12 +00:00
|
|
|
depends_on 'libpurple' => :optional if build.include? 'purple'
|
|
|
|
depends_on 'libotr' => :optional if build.include? 'with-otr'
|
2010-06-29 21:48:55 +00:00
|
|
|
|
|
|
|
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'
|
|
|
|
|
2011-04-26 01:30:13 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--debug=0",
|
|
|
|
"--ssl=gnutls",
|
|
|
|
"--pidfile=#{var}/bitlbee/run/bitlbee.pid",
|
|
|
|
"--config=#{var}/bitlbee/lib/",
|
|
|
|
"--ipsocket=#{var}/bitlbee/run/bitlbee.sock"]
|
|
|
|
|
2012-08-09 15:51:54 +00:00
|
|
|
args << "--purple=1" if build.include? "purple"
|
2012-10-02 23:31:12 +00:00
|
|
|
args << "--otr=1" if build.include? "with-otr"
|
2011-04-26 01:30:13 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
|
2010-06-29 21:48:55 +00:00
|
|
|
# This build depends on make running first.
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
2012-08-29 15:52:44 +00:00
|
|
|
# Install the dev headers too
|
|
|
|
system "make install-dev"
|
2010-06-29 21:48:55 +00:00
|
|
|
# This build has an extra step.
|
|
|
|
system "make install-etc"
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
(var+"bitlbee/run").mkpath
|
|
|
|
(var+"bitlbee/lib").mkpath
|
2010-06-29 21:48:55 +00:00
|
|
|
end
|
|
|
|
end
|