mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
Create pinentry
This commit is contained in:
parent
81803e92ca
commit
6eb84d1405
43
projects/gnupg.org/pinentry
Normal file
43
projects/gnupg.org/pinentry
Normal file
|
@ -0,0 +1,43 @@
|
|||
distributable:
|
||||
url: https://gnupg.org/ftp/gcrypt/pinentry/pinentry-{{version}}.tar.bz2
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
url: https://gnupg.org/ftp/gcrypt/pinentry/
|
||||
match: /pinentry-(\d+\.\d+(\.\d+)?)\.tar\.bz2/
|
||||
strip:
|
||||
- /pinentry-/
|
||||
- /.tar.bz2/
|
||||
|
||||
dependencies:
|
||||
gnupg.org/libassuan: '*'
|
||||
gnupg.org/libgpg-error: '*'
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
freedesktop.org/pkg-config: '*'
|
||||
script: |
|
||||
./configure $ARGS
|
||||
make --jobs {{ hw.concurrency }} install
|
||||
env:
|
||||
ARGS:
|
||||
- --prefix="{{prefix}}"
|
||||
- --disable-dependency-tracking
|
||||
- --disable-silent-rules
|
||||
- --disable-pinentry-fltk
|
||||
- --disable-pinentry-gnome3
|
||||
- --disable-pinentry-gtk2
|
||||
- --disable-pinentry-qt
|
||||
- --disable-pinentry-qt5
|
||||
- --disable-pinentry-tqt
|
||||
- --enable-pinentry-tty
|
||||
|
||||
provides:
|
||||
- bin/pinentry
|
||||
- bin/pinentry-tty
|
||||
|
||||
test: |
|
||||
pinentry --version | grep {{version}}
|
||||
pinentry-tty --version | grep {{version}}
|
Loading…
Reference in a new issue