Skip to content

Commit

Permalink
bitlbee: depend on finch instead of libpurple
Browse files Browse the repository at this point in the history
libpurple is provided by the finch package and no longer
exists as a top-level dependency.

Closes Homebrew/legacy-homebrew#27008.

Signed-off-by: Brett Koonce <koonce@gmail.com>
  • Loading branch information
Jason Terk authored and brettkoonce committed Feb 25, 2014
1 parent 890b895 commit a490baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Formula/bitlbee.rb
Expand Up @@ -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
Expand All @@ -23,7 +23,7 @@ def install
"--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
Expand Down

0 comments on commit a490baa

Please sign in to comment.