blob: 226521eec5e147e6a43c54170850cc5d263573a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Gpgme < Formula
homepage 'http://www.gnupg.org/related_software/gpgme/'
url 'ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.4.2.tar.bz2'
sha1 '75051ec9ecd080ae105423bd72f260350a470bc8'
depends_on 'gnupg'
depends_on 'libgpg-error'
depends_on 'libassuan'
depends_on 'pth'
fails_with :llvm do
build 2334
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-static",
"--without-gpgsm",
"--without-gpgconf"
system "make"
system "make check"
system "make install"
end
end
|