Commit 165f6a22 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #473 from cstrouse/add-libgcrypt

Add libgcrypt (1.7.6) package
parents 84a77694 7ede10d5
require 'package'
class Libgcrypt < Package
version '1.7.6'
source_url 'https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.7.6.tar.bz2'
source_sha1 'd2b9e0f413064cfc67188f80d3cbda887c755a62'
depends_on "libgpgerror"
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