aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDean Strelau2009-10-15 15:04:16 -0400
committerMax Howell2009-11-07 18:22:35 +0000
commite221c229152f711352fc8725e3d3db347d6bb18b (patch)
tree02c9f3abf7ef8c05ec9809985a970b59f1024905 /Library/Formula
parent5bc3497c92036e19d4bb41913769d5bf8097dedf (diff)
downloadhomebrew-e221c229152f711352fc8725e3d3db347d6bb18b.tar.bz2
GPGME formula
The GNU Privacy Guard Made Easy C library.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gpgme.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/gpgme.rb b/Library/Formula/gpgme.rb
new file mode 100644
index 000000000..715857f89
--- /dev/null
+++ b/Library/Formula/gpgme.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Gpgme < Formula
+ url 'ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.1.8.tar.bz2'
+ homepage 'http://www.gnupg.org'
+ sha1 'e56da614f3e6acc1cb51af767c77f4a95b05b1e8'
+
+ depends_on 'libgpg-error'
+
+ def install
+ ENV.gcc_4_2
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end