diff options
| author | Dominyk Tiller | 2014-12-17 00:30:26 +0000 |
|---|---|---|
| committer | Jack Nagel | 2014-12-17 00:04:31 -0500 |
| commit | c2265538f71642f7df3981ba86b084349a7338cf (patch) | |
| tree | 3715eeacaca284428c44fac19ba209ac6dae2e32 | |
| parent | 3ce27a6dd140a5ffa7cc189ebdb61533a7d1f44f (diff) | |
| download | homebrew-c2265538f71642f7df3981ba86b084349a7338cf.tar.bz2 | |
pidgin: fix --without-gui
The options apparently need to be above the dependencies otherwise the
dependencies kick in first. Should deal with [this
comment](https://github.com/Homebrew/homebrew/commit/7537f3663d0ca35e584
8d0a9644ebc86c92d267f#commitcomment-9000071).
Closes #35043.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/pidgin.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/pidgin.rb b/Library/Formula/pidgin.rb index fcd14be23..90ec2da3e 100644 --- a/Library/Formula/pidgin.rb +++ b/Library/Formula/pidgin.rb @@ -12,6 +12,11 @@ class Pidgin < Formula sha1 "8c03819ed1317164cc29b5de882604a7a017a89f" => :mountain_lion end + deprecated_option "perl" => "with-perl" + + option "with-perl", "Build Pidgin with Perl support" + option "without-GUI", "Build Finch instead of Pidgin" + depends_on :x11 => :optional depends_on "pkg-config" => :build depends_on "intltool" => :build @@ -34,11 +39,6 @@ class Pidgin < Formula sha1 "e231a2dc72c960f2aa70d8c9d4b05abc6d123085" end - deprecated_option "perl" => "with-perl" - - option "with-perl", "Build Pidgin with Perl support" - option "without-GUI", "Build Finch instead of Pidgin" - def install args = %W[ --disable-debug |
