homebrew-core/Formula/pidgin.rb
2015-01-04 00:29:29 -08:00

84 lines
2.4 KiB
Ruby

class Pidgin < Formula
homepage "https://pidgin.im/"
url "https://downloads.sourceforge.net/project/pidgin/Pidgin/2.10.11/pidgin-2.10.11.tar.bz2"
sha1 "5e0062b81bdb01300804e12bc0b6a04a91984631"
bottle do
sha1 "7b54cf4adf86babc1ad1cb6ef4984bc1320f58e4" => :yosemite
sha1 "0d2a06822e30562d812c7e9919cd356ea35811e4" => :mavericks
sha1 "613a6eba69a416c37595d34452a75ecd465a7a86" => :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
depends_on "gettext"
depends_on "gtk+"
depends_on "gsasl" => :optional
depends_on "gnutls"
depends_on "libgcrypt"
depends_on "libotr"
if build.without? "GUI"
depends_on "glib"
depends_on "libidn"
end
# Finch has an equal port called purple-otr but it is a NIGHTMARE to compile
# If you want to fix this and create a PR on Homebrew please do so.
resource "pidgin-otr" do
url "https://otr.cypherpunks.ca/pidgin-otr-4.0.1.tar.gz"
sha1 "e231a2dc72c960f2aa70d8c9d4b05abc6d123085"
end
def install
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--disable-avahi
--disable-doxygen
--enable-gnutls=yes
--disable-dbus
--disable-gevolution
--disable-gstreamer
--disable-gstreamer-interfaces
--disable-gtkspell
--disable-idn
--disable-meanwhile
--disable-vv
]
args << "--with-x" if build.with? "GUI"
args << "--disable-perl" if build.without? "perl"
args << "--enable-cyrus-sasl" if build.with? "gsasl"
if build.without? "GUI"
args << "--with-tclconfig=#{MacOS.sdk_path}/usr/lib"
args << "--with-tkconfig=#{MacOS.sdk_path}/usr/lib"
args << "--without-x"
args << "--disable-gtkui"
end
system "./configure", *args
system "make", "install"
if build.with? "GUI"
resource("pidgin-otr").stage do
ENV.prepend "CFLAGS", "-I#{HOMEBREW_PREFIX}/opt/libotr/include/libotr"
ENV.append_path "PKG_CONFIG_PATH", "#{lib}/pkgconfig"
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make", "install"
end
end
end
test do
system "#{bin}/finch", "--version"
end
end