aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBirger J. Nordølum2011-04-10 22:22:49 +0200
committerAdam Vandenberg2011-04-11 07:43:43 -0700
commitbf4d819402137c193fe2545f222d1d58bf310100 (patch)
tree3cb95c5da0f7fdf795f1233f5c44013e54538d2f /Library
parent4f99ac938c2669d6ff535ac79f05fa4bb7149619 (diff)
downloadhomebrew-bf4d819402137c193fe2545f222d1d58bf310100.tar.bz2
GnuTLS 2.12.2
Passing --with-libgcrypt to compile correctly. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gnutls.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/gnutls.rb b/Library/Formula/gnutls.rb
index 3a4389941..75508d86d 100644
--- a/Library/Formula/gnutls.rb
+++ b/Library/Formula/gnutls.rb
@@ -2,8 +2,8 @@ require 'formula'
class Gnutls < Formula
homepage 'http://www.gnu.org/software/gnutls/gnutls.html'
- url 'http://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.10.5.tar.bz2'
- sha1 '4530657082a0e754356de89a5529d1ad7a18e777'
+ url 'ftp://ftp.gnu.org/gnu/gnutls/gnutls-2.12.2.tar.bz2'
+ sha256 'cc964ee51350449142221e7efef2d5ea60459539484538e282c3b48183ab7e43'
depends_on 'pkg-config' => :build
depends_on 'libgcrypt'
@@ -19,8 +19,10 @@ class Gnutls < Formula
ENV.universal_binary # build fat so wine can use it
system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--disable-guile",
+ "--disable-static",
"--prefix=#{prefix}",
- "--disable-guile"
+ "--with-libgcrypt"
system "make install"
end
end