diff options
| author | Adam Vandenberg | 2013-06-30 15:07:42 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-30 15:07:42 -0700 |
| commit | 20933373e40c3b20ee38e44c5b5e1910c64c35c8 (patch) | |
| tree | 692451aa6b38a2eb028b60359e06b3103232bd53 /Library | |
| parent | 668434759694999fa42e84385565afc79a931934 (diff) | |
| download | homebrew-20933373e40c3b20ee38e44c5b5e1910c64c35c8.tar.bz2 | |
libpurple no longer needs libgcrypt to configure
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libpurple.rb | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/Library/Formula/libpurple.rb b/Library/Formula/libpurple.rb index 92fbdf8c2..3667304c9 100644 --- a/Library/Formula/libpurple.rb +++ b/Library/Formula/libpurple.rb @@ -9,28 +9,23 @@ class Libpurple < Formula depends_on 'intltool' => :build depends_on 'gettext' depends_on 'glib' - depends_on 'libidn' depends_on 'gnutls' - # guntls used to use libgcrypt, and the configure script links this - # library when testing for gnutls, so include it as a build-time - # dependency. See: - # https://github.com/mxcl/homebrew/issues/17129 - depends_on 'libgcrypt' => :build + depends_on 'libidn' def install # Just build the library, so disable all this UI stuff system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--disable-gtkui", + "--disable-avahi", "--disable-consoleui", "--disable-dbus", - "--without-x", + "--disable-doxygen", "--disable-gstreamer", - "--disable-vv", + "--disable-gtkui", "--disable-meanwhile", - "--disable-avahi", - "--disable-perl", - "--disable-doxygen" + "--disable-vv", + "--without-x", + "--disable-perl" system "make install" end end |
