98711b02c8
The GNU Privacy Guard Made Easy C library.
16 lines
387 B
Ruby
16 lines
387 B
Ruby
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
|