aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Christenson2014-06-30 21:17:58 -0600
committerMike McQuaid2014-07-01 09:53:55 +0100
commit90254942b5d8e4be5df4d0317cf95e17196bea4d (patch)
tree495150ced33857d4632493922646595b734e3bea /Library/Formula
parent2551d3efdebbe3402ebb7f65a69817879d113235 (diff)
downloadhomebrew-90254942b5d8e4be5df4d0317cf95e17196bea4d.tar.bz2
gnupg 1.4.18
Update to latest stable release, use double quotes instead of single.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnupg.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/gnupg.rb b/Library/Formula/gnupg.rb
index 13da1308e..6bf09fea5 100644
--- a/Library/Formula/gnupg.rb
+++ b/Library/Formula/gnupg.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Gnupg < Formula
- homepage 'http://www.gnupg.org/'
- url 'ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.17.tar.bz2'
- mirror 'http://mirror.switch.ch/ftp/mirror/gnupg/gnupg/gnupg-1.4.17.tar.bz2'
- sha1 '830c7f749ad92d6577c521addea5e5d920128d42'
+ homepage "http://www.gnupg.org/"
+ url "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.18.tar.bz2"
+ mirror "http://mirror.switch.ch/ftp/mirror/gnupg/gnupg/gnupg-1.4.18.tar.bz2"
+ sha1 "41462d1a97f91abc16a0031b5deadc3095ce88ae"
bottle do
sha1 "4b841286cbcd16c0ae1a039a959dd1d29751072b" => :mavericks
@@ -12,10 +12,10 @@ class Gnupg < Formula
sha1 "fe3780d0694e1cb01b17bcaadf95b7f3c02b0060" => :lion
end
- option '8192', 'Build with support for private keys of up to 8192 bits'
+ option "8192", "Build with support for private keys of up to 8192 bits"
def install
- inreplace 'g10/keygen.c', 'max=4096', 'max=8192' if build.include? '8192'
+ inreplace "g10/keygen.c", "max=4096", "max=8192" if build.include? "8192"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
@@ -25,7 +25,7 @@ class Gnupg < Formula
# we need to create these directories because the install target has the
# dependency order wrong
- [bin, libexec/'gnupg'].each(&:mkpath)
+ [bin, libexec/"gnupg"].each(&:mkpath)
system "make install"
end
end