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-04-14 23:56:58 +00:00
|
|
|
url 'ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/gnutls-3.2.13.tar.xz'
|
|
|
|
mirror 'http://mirrors.dotsrc.org/gcrypt/gnutls/v3.2/gnutls-3.2.13.tar.xz'
|
|
|
|
sha1 'c4a95902bb67df46e9b2c08d4c10523db94e2736'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2014-02-22 15:39:17 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-04-15 00:00:49 +00:00
|
|
|
sha1 "d47f9d4adc2ed860c351edef7729e206b493012d" => :mavericks
|
|
|
|
sha1 "67dc1e554a4af1b004d1fdb3ae0dad7261cfbbe0" => :mountain_lion
|
|
|
|
sha1 "75ec84c8ae2f519327e2230f18e7508c33da9add" => :lion
|
2014-02-22 15:39:17 +00:00
|
|
|
end
|
|
|
|
|
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-04-15 03:10:34 +00:00
|
|
|
depends_on 'gmp'
|
2012-11-08 18:21:53 +00:00
|
|
|
depends_on 'nettle'
|
2013-07-28 15:47:43 +00:00
|
|
|
depends_on 'guile' => :optional
|
2014-04-15 03:10:34 +00:00
|
|
|
depends_on 'p11-kit' => :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}
|
2014-04-14 23:33:16 +00:00
|
|
|
--sysconfdir=#{etc}
|
2014-04-14 23:44:57 +00:00
|
|
|
--with-default-trust-store-file=#{etc}/openssl/cert.pem
|
2013-07-28 15:47:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
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
|
2014-04-14 23:44:57 +00:00
|
|
|
|
|
|
|
def post_install
|
|
|
|
Formula["openssl"].post_install
|
|
|
|
end
|
2009-09-09 14:11:58 +00:00
|
|
|
end
|