2011-03-10 05:11:03 +00:00
|
|
|
class Gnupg < Formula
|
2015-02-27 20:37:37 +00:00
|
|
|
homepage "https://www.gnupg.org/"
|
|
|
|
url "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.19.tar.bz2"
|
2015-04-09 12:35:19 +00:00
|
|
|
mirror "https://www.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.19.tar.bz2"
|
2015-02-27 20:37:37 +00:00
|
|
|
mirror "http://mirror.switch.ch/ftp/mirror/gnupg/gnupg/gnupg-1.4.19.tar.bz2"
|
|
|
|
sha1 "5503f7faa0a0e84450838706a67621546241ca50"
|
2010-11-01 18:26:00 +00:00
|
|
|
|
2014-02-22 22:42:59 +00:00
|
|
|
bottle do
|
2015-02-27 21:55:00 +00:00
|
|
|
sha1 "22482f6bceecb726ad428b06308d918308bf06e3" => :yosemite
|
|
|
|
sha1 "589cd445bdfaf05cb5f18021b7b7207037e05250" => :mavericks
|
|
|
|
sha1 "842a4c03eac710030e6257d00d7133b7a1c046cd" => :mountain_lion
|
2014-02-22 22:42:59 +00:00
|
|
|
end
|
|
|
|
|
2014-10-22 01:27:55 +00:00
|
|
|
depends_on "curl" if MacOS.version <= :mavericks
|
|
|
|
|
2012-10-23 21:32:53 +00:00
|
|
|
def install
|
2010-10-18 17:40:01 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2015-02-27 20:37:37 +00:00
|
|
|
"--disable-silent-rules",
|
2010-07-01 05:02:09 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-asm"
|
2014-05-14 00:10:11 +00:00
|
|
|
system "make"
|
2015-01-19 05:55:11 +00:00
|
|
|
system "make", "check"
|
2009-09-01 00:33:33 +00:00
|
|
|
|
2010-07-01 05:02:09 +00:00
|
|
|
# we need to create these directories because the install target has the
|
2009-09-09 14:11:58 +00:00
|
|
|
# dependency order wrong
|
2014-07-01 03:17:58 +00:00
|
|
|
[bin, libexec/"gnupg"].each(&:mkpath)
|
2015-01-19 05:55:11 +00:00
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"gen-key-script").write <<-EOS.undent
|
|
|
|
Key-Type: RSA
|
|
|
|
Key-Length: 4096
|
|
|
|
Subkey-Type: RSA
|
|
|
|
Subkey-Length: 4096
|
|
|
|
Name-Real: Homebrew Test
|
|
|
|
Name-Email: test@example.com
|
|
|
|
Expire-Date: 0
|
|
|
|
EOS
|
2015-02-27 20:37:37 +00:00
|
|
|
system bin/"gpg", "--batch", "--gen-key", "gen-key-script"
|
2015-01-19 05:55:11 +00:00
|
|
|
(testpath/"test.txt").write ("Hello World!")
|
2015-02-27 20:37:37 +00:00
|
|
|
system bin/"gpg", "--armor", "--sign", "test.txt"
|
|
|
|
system bin/"gpg", "--verify", "test.txt.asc"
|
2009-09-01 00:33:33 +00:00
|
|
|
end
|
|
|
|
end
|