finch 2.10.6
Also add libgcrypt as a build-time dep so that finding gnutls works. Closes Homebrew/homebrew#17129.
This commit is contained in:
parent
3483deba7f
commit
ceacc32064
1 changed files with 7 additions and 2 deletions
|
@ -2,8 +2,8 @@ require 'formula'
|
|||
|
||||
class Finch < Formula
|
||||
homepage 'http://developer.pidgin.im/wiki/Using%20Finch'
|
||||
url 'http://sourceforge.net/projects/pidgin/files/Pidgin/2.10.4/pidgin-2.10.4.tar.bz2'
|
||||
sha256 '8fbef835c8dfa2281532ad7064d664477d72015d6dcd4345362dcfe658aaee0e'
|
||||
url 'http://sourceforge.net/projects/pidgin/files/Pidgin/2.10.6/pidgin-2.10.6.tar.bz2'
|
||||
sha1 'a0532e7ba2acd205d6a5a4e3624156a980fe3d43'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'libidn'
|
||||
|
@ -11,6 +11,11 @@ class Finch < Formula
|
|||
depends_on 'glib'
|
||||
depends_on 'intltool'
|
||||
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
|
||||
|
||||
def install
|
||||
# To get it to compile, had to configure without support for:
|
||||
|
|
Loading…
Reference in a new issue