GPGME formula
The GNU Privacy Guard Made Easy C library.
This commit is contained in:
parent
b399ca5454
commit
98711b02c8
1 changed files with 16 additions and 0 deletions
16
Formula/gpgme.rb
Normal file
16
Formula/gpgme.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue