blob: 52aad8035623bf1a73cbf3d355f2aba4448ffde1 (
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
28
29
30
31
32
33
34
35
36
37
|
require 'formula'
class Gnupg < Formula
homepage 'http://www.gnupg.org/'
url 'ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.16.tar.bz2'
mirror 'http://mirror.switch.ch/ftp/mirror/gnupg/gnupg/gnupg-1.4.16.tar.bz2'
sha1 '0bf5e475f3eb6f33d5474d017fe5bf66070e43f4'
bottle do
sha1 "eb0eb56c77ee61a43ec63393cf63493f0a04c4aa" => :mavericks
sha1 "3f2e2ebd287d57d5c89565d087cfbaa1e2586f54" => :mountain_lion
sha1 "a077b3a698ef320d82a05d5a538ec4860504251c" => :lion
end
option '8192', 'Build with support for private keys of up to 8192 bits'
def cflags
cflags = ENV.cflags.to_s
cflags += ' -std=gnu89 -fheinous-gnu-extensions' if ENV.compiler == :clang
cflags
end
def install
inreplace 'g10/keygen.c', 'max=4096', 'max=8192' if build.include? '8192'
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-asm"
system "make", "CFLAGS=#{cflags}"
system "make check"
# we need to create these directories because the install target has the
# dependency order wrong
[bin, libexec/'gnupg'].each(&:mkpath)
system "make install"
end
end
|