gpgme: new package (#10174)
This commit is contained in:
parent
b1944d4cbf
commit
ec2c5e5b0d
1 changed files with 19 additions and 0 deletions
19
var/spack/repos/builtin/packages/gpgme/package.py
Normal file
19
var/spack/repos/builtin/packages/gpgme/package.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class Gpgme(AutotoolsPackage):
|
||||
"""GPGME is the standard library to access GnuPG
|
||||
functions from programming languages."""
|
||||
|
||||
homepage = "https://www.gnupg.org/software/gpgme/index.html"
|
||||
url = "https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.12.0.tar.bz2"
|
||||
|
||||
version('1.12.0', sha256='b4dc951c3743a60e2e120a77892e9e864fb936b2e58e7c77e8581f4d050e8cd8')
|
||||
|
||||
depends_on('libgpg-error', type='build')
|
||||
depends_on('libassuan', type='build')
|
Loading…
Reference in a new issue