aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-17 12:08:07 -0700
committerAdam Vandenberg2012-03-17 12:08:07 -0700
commit4ccda69ecdec9300d25e852c06ff22dc1565a2c9 (patch)
tree5f8e1b3c400a4598e9b2b7a6edc41c03bd6f1476 /Library/Formula
parent6e3b6927883de425dd90fc7e406f0fef082cc372 (diff)
downloadhomebrew-4ccda69ecdec9300d25e852c06ff22dc1565a2c9.tar.bz2
gpg-agent: reformat patch notes
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gpg-agent.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/gpg-agent.rb b/Library/Formula/gpg-agent.rb
index f08fe39fc..51a834936 100644
--- a/Library/Formula/gpg-agent.rb
+++ b/Library/Formula/gpg-agent.rb
@@ -1,8 +1,8 @@
require 'formula'
class GpgAgent < Formula
- url 'ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.0.18.tar.bz2'
homepage 'http://www.gnupg.org/'
+ url 'ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.0.18.tar.bz2'
sha1 '5ec2f718760cc3121970a140aeea004b64545c46'
depends_on 'libgpg-error'
@@ -12,16 +12,15 @@ class GpgAgent < Formula
depends_on 'pth'
depends_on 'pinentry'
- def patches
- DATA # fix package name to avoid conflicts
- end
+ # fix package name to avoid conflicts
+ def patches; DATA; end
def install
# so we don't use Clang's internal stdint.h
ENV['gl_cv_absolute_stdint_h'] = '/usr/include/stdint.h'
- system "./configure", "--prefix=#{prefix}",
- "--disable-dependency-tracking",
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
"--enable-agent-only"
system "make install"
end