pantry/projects/gnupg.org/libgpg-error/package.yml
Jacob Heider 8a8a25b795 fix(libgpg-error)
closes #6462
2024-06-21 15:05:40 -04:00

39 lines
950 B
YAML

distributable:
url: https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-{{version.raw}}.tar.gz
strip-components: 1
versions:
url: https://gnupg.org/ftp/gcrypt/libgpg-error/
match: /libgpg-error-\d+\.\d+(\.\d+)?\.tar\.gz/
strip:
- /libgpg-error-/
- /.tar.gz/
provides:
- bin/gpg-error
# Deprecated, but required for gpgme
- bin/gpg-error-config
- bin/gpgrt-config
- bin/yat2m
build:
script:
- run: |
sed -i -e '/#include "gpgrt-int.h"/a\
\
#if defined (__APPLE__)\
extern char** environ;\
#endif' \
spawn-posix.c
if: '>=1.50'
working-directory: src
- ./configure --prefix={{prefix}} --enable-install-gpg-error-config
- make
- make check
- make install
test:
script: test "$(gpg-error 56)" = "$OUTPUT"
env:
OUTPUT: '56 = (0, 56) = (GPG_ERR_SOURCE_UNKNOWN, GPG_ERR_BAD_CERT_CHAIN) = (Unspecified source, Bad certificate chain)'