ecaa12a288
The issue the patch addressed was fixed upstream: http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=57af3b052c Signed-off-by: Jack Nagel <jacknagel@gmail.com>
25 lines
792 B
Ruby
25 lines
792 B
Ruby
require 'formula'
|
|
|
|
class Gnutls < Formula
|
|
homepage 'http://www.gnu.org/software/gnutls/gnutls.html'
|
|
url 'http://ftpmirror.gnu.org/gnutls/gnutls-2.12.11.tar.bz2'
|
|
md5 'f08234b64a8025d6d5aa1307868b02ed'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libgcrypt'
|
|
depends_on 'libtasn1' => :optional
|
|
|
|
fails_with_llvm "Undefined symbols when linking", :build => "2326"
|
|
|
|
def install
|
|
ENV.universal_binary # build fat so wine can use it
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--disable-guile",
|
|
"--disable-static",
|
|
"--prefix=#{prefix}",
|
|
"--with-libgcrypt",
|
|
"--without-p11-kit"
|
|
system "make install"
|
|
end
|
|
end
|