homebrew-core/Formula/pidgin.rb
2016-01-15 12:48:04 +00:00

86 lines
2.5 KiB
Ruby

class Pidgin < Formula
desc "Multi-protocol chat client"
homepage "https://pidgin.im/"
url "https://downloads.sourceforge.net/project/pidgin/Pidgin/2.10.12/pidgin-2.10.12.tar.bz2"
sha256 "2c7523f0fefe89749c03b2b738ab9f7bd186da435be4762f1487eee31e77ffdd"
revision 1
bottle do
sha256 "a010b4baeb0d28eb3c22ddb45ce85c0dc73ee1c32e01f1f42d55f52718e8aaf9" => :el_capitan
sha256 "48128e5a37ed28e61d616f25b55b85424817a2d4421f8133bd46a1514f2b9ea3" => :yosemite
sha256 "f78352ef4891c3d84a1d5ae3a1eae001a526163f8586c7b4ecaf23b3004bd45f" => :mavericks
end
option "with-perl", "Build Pidgin with Perl support"
option "without-gui", "Build only Finch, the command-line client"
deprecated_option "perl" => "with-perl"
deprecated_option "without-GUI" => "without-gui"
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "gsasl" => :optional
depends_on "gnutls"
depends_on "libgcrypt"
depends_on "libidn"
depends_on "glib"
if build.with? "gui"
depends_on "gtk+"
depends_on "cairo"
depends_on "pango"
depends_on "libotr"
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"
sha256 "1b781f48c27bcc9de3136c0674810df23f7d6b44c727dbf4dfb24067909bf30a"
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-meanwhile
--disable-vv
--without-x
]
args << "--disable-perl" if build.without? "perl"
args << "--enable-cyrus-sasl" if build.with? "gsasl"
args << "--with-tclconfig=#{MacOS.sdk_path}/usr/lib"
args << "--with-tkconfig=#{MacOS.sdk_path}/usr/lib"
if build.without? "gui"
args << "--disable-gtkui"
end
system "./configure", *args
system "make", "install"
if build.with? "gui"
resource("pidgin-otr").stage do
ENV.prepend "CFLAGS", "-I#{Formula["libotr"].opt_include}"
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