Commit f40a01eb authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #471 from cstrouse/add-gpgme

Add gpgme (1.8.0) package
parents 165f6a22 6bda79b9
require 'package'
class Gpgme < Package
version '1.8.0'
source_url 'https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.8.0.tar.bz2'
source_sha1 'efa043064dbf675fd713228c6fcfcc4116feb221'
depends_on "libgpgerror"
depends_on "libassuan"
def self.build
system "./configure --prefix=/usr/local"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment