2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gnutls < Formula
|
2013-01-05 16:14:59 +00:00
|
|
|
homepage 'http://gnutls.org'
|
2014-03-06 03:30:07 +00:00
|
|
|
url 'ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/gnutls-3.2.12.1.tar.xz'
|
|
|
|
mirror 'http://mirrors.dotsrc.org/gcrypt/gnutls/v3.2/gnutls-3.2.12.1.tar.xz'
|
|
|
|
sha1 '5ad26522ec18d6b54a17ff8d1d5b69bf2cd5c7ce'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2014-02-22 15:39:17 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-03-06 03:30:07 +00:00
|
|
|
sha1 "63c97291213e9f02872aac775fa8608f9fde8f9d" => :mavericks
|
|
|
|
sha1 "af89106ed194090f9aabe0a6705f22b63ca24f32" => :mountain_lion
|
|
|
|
sha1 "76cf541a1736da00417d499b3223b80c0677ed18" => :lion
|
2014-02-22 15:39:17 +00:00
|
|
|
end
|
|
|
|
|
2012-11-08 18:21:53 +00:00
|
|
|
depends_on 'xz' => :build
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-08-17 18:12:23 +00:00
|
|
|
depends_on 'libtasn1'
|
2014-02-08 16:40:15 +00:00
|
|
|
depends_on 'p11-kit' => :optional
|
2012-11-08 18:21:53 +00:00
|
|
|
depends_on 'nettle'
|
2013-07-28 15:47:43 +00:00
|
|
|
depends_on 'guile' => :optional
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
cause "Undefined symbols when linking"
|
|
|
|
end
|
2010-12-29 04:53:48 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2013-07-28 15:47:43 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--disable-static
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
|
|
|
|
|
|
|
if build.with? 'guile'
|
|
|
|
args << '--enable-guile'
|
|
|
|
args << '--with-guile-site-dir=no'
|
|
|
|
end
|
|
|
|
|
|
|
|
system "./configure", *args
|
2009-09-09 14:11:58 +00:00
|
|
|
system "make install"
|
2011-10-12 01:05:53 +00:00
|
|
|
|
2011-10-12 01:23:04 +00:00
|
|
|
# certtool shadows the OS X certtool utility
|
2011-10-12 01:05:53 +00:00
|
|
|
mv bin+'certtool', bin+'gnutls-certtool'
|
2011-10-12 01:23:04 +00:00
|
|
|
mv man1+'certtool.1', man1+'gnutls-certtool.1'
|
2009-09-09 14:11:58 +00:00
|
|
|
end
|
|
|
|
end
|