Skip to content

Commit

Permalink
pinentry: Add version 1.1.1
Browse files Browse the repository at this point in the history
pinentry is a small collection of dialog programs that
allow GnuPG to read passphrases and PIN numbers in a
secure manner.[1] Without it, using gpg is more painfull
than it needs to be because you'll have to use the
`--pinentry-mode loopback` flag almost everywhere which is
not convenient.

[1] <https://gnupg.org/related_software/pinentry/index.html>
  • Loading branch information
niclas committed Mar 15, 2022
1 parent 674c6b0 commit ded2aa8
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pinentry.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/usr/bin/env beesh

# BEE_VERSION pinentry-1.1.1-0

# more info: https://gnupg.org/related_software/pinentry/index.html

#SRCURL[0]="https://github.com/gpg/pinentry/archive/refs/tags/pinentry-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/3e827660e0d116b4d93c5a88ba54d5f6/pinentry-1.1.1.tar.gz"

# PATCHURL+=()

build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure

./configure \
${DEFCONFIG} \
--disable-doc \
--disable-pinentry-qt5 \
--enable-pinentry-tty \
--enable-pinentry-gtk2
}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}

0 comments on commit ded2aa8

Please sign in to comment.