diff options
| author | Jason Terk | 2014-02-25 13:18:12 -0800 |
|---|---|---|
| committer | Brett Koonce | 2014-02-25 16:01:41 -0600 |
| commit | 99c51214e562d664156b29202d46f8f34c4f0f66 (patch) | |
| tree | 5820c92c12cc521f08bb3063ab1edd07871609cd /Library/Formula/bitlbee.rb | |
| parent | ed1e97140be6b5a3ef62b46a50294fee5f59969b (diff) | |
| download | homebrew-99c51214e562d664156b29202d46f8f34c4f0f66.tar.bz2 | |
bitlbee: depend on finch instead of libpurple
libpurple is provided by the finch package and no longer
exists as a top-level dependency.
Closes #27008.
Signed-off-by: Brett Koonce <koonce@gmail.com>
Diffstat (limited to 'Library/Formula/bitlbee.rb')
| -rw-r--r-- | Library/Formula/bitlbee.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/bitlbee.rb b/Library/Formula/bitlbee.rb index 0e8739e7b..2892c45c5 100644 --- a/Library/Formula/bitlbee.rb +++ b/Library/Formula/bitlbee.rb @@ -5,7 +5,7 @@ class Bitlbee < Formula url 'http://get.bitlbee.org/src/bitlbee-3.2.1.tar.gz' sha1 '954471ab87206826c072f31b3def40a1be5a78f5' - option 'with-libpurple', "Use libpurple for all communication with instant messaging networks" + option 'with-finch', "Use finch/libpurple for all communication with instant messaging networks" option 'with-libotr', "Build with otr (off the record) support" depends_on 'pkg-config' => :build @@ -23,7 +23,7 @@ class Bitlbee < Formula "--config=#{var}/bitlbee/lib/", "--ipsocket=#{var}/bitlbee/run/bitlbee.sock"] - args << "--purple=1" if build.with? "libpurple" + args << "--purple=1" if build.with? "finch" args << "--otr=1" if build.with? "libotr" system "./configure", *args |
