* gpgme - wip

* fix prefix

* fix libgpg-error

---------

Co-authored-by: Jacob Heider <jacob@tea.xyz>
This commit is contained in:
Kevin Chen 2023-09-04 19:46:49 -04:00 committed by GitHub
parent 3c7f69ff55
commit 90c2160bbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 1 deletions

View file

@ -0,0 +1,34 @@
distributable:
url: https://gnupg.org/ftp/gcrypt/gpgme/gpgme-{{version.raw}}.tar.gz
strip-components: 1
versions:
url: https://gnupg.org/ftp/gcrypt/gpgme/
match: /gpgme-\d+\.\d+(\.\d+)?\.tar\.gz/
strip:
- /gpgme-/
- /.tar.gz/
provides:
- bin/gpgme-config
build:
script:
- ./configure $ARGS
- make
- make install
env:
ARGS:
- --prefix={{prefix}}
- --with-libassuan-prefix={{deps.gnupg.org/libassuan.prefix}}
- --with-libgpg-error-prefix={{deps.gnupg.org/libgpg-error.prefix}}
CFLAGS: $CFLAGS -Wno-implicit-function-declaration
CXXFLAGS: $CXXFLAGS -std=c++14
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
gnupg.org: '*'
gnupg.org/libassuan: ^2.0.2
gnupg.org/libgpg-error: ^1.11
test:
script: test "$(gpgme-config --version)" = "{{version}}"

View file

@ -11,12 +11,14 @@ versions:
provides:
- bin/gpg-error
# Deprecated, but required for gpgme
- bin/gpg-error-config
- bin/gpgrt-config
- bin/yat2m
build:
script: |
./configure --prefix={{prefix}}
./configure --prefix={{prefix}} --enable-install-gpg-error-config
make
make check
make install