Support external find for gpgme. (#18594)
This commit is contained in:
parent
691e46c4f5
commit
9eac1ed6a8
1 changed files with 6 additions and 0 deletions
|
@ -13,8 +13,14 @@ class Gpgme(AutotoolsPackage):
|
|||
homepage = "https://www.gnupg.org/software/gpgme/index.html"
|
||||
url = "https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.12.0.tar.bz2"
|
||||
|
||||
executables = ['^gpgme-config$']
|
||||
|
||||
version('1.12.0', sha256='b4dc951c3743a60e2e120a77892e9e864fb936b2e58e7c77e8581f4d050e8cd8')
|
||||
|
||||
depends_on('gnupg', type='build')
|
||||
depends_on('libgpg-error', type='build')
|
||||
depends_on('libassuan', type='build')
|
||||
|
||||
@classmethod
|
||||
def determine_version(cls, exe):
|
||||
return Executable(exe)('--version', output=str, error=str).rstrip()
|
||||
|
|
Loading…
Reference in a new issue