homebrew-core/Formula/gnupg.rb
Flurin Rindisbacher 87ef8190e4 gnupg: add mirror
ftp.gnupg.org is now inaccessible for more than 24 hours. add one of the official mirrors. (this one is in Switzerland)

Closes Homebrew/homebrew#25540.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-29 21:33:49 +00:00

31 lines
971 B
Ruby

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'
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