diff options
Diffstat (limited to 'source/n/pinentry/pinentry.SlackBuild')
-rwxr-xr-x | source/n/pinentry/pinentry.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/n/pinentry/pinentry.SlackBuild b/source/n/pinentry/pinentry.SlackBuild index db1d18a8..9d3e6236 100755 --- a/source/n/pinentry/pinentry.SlackBuild +++ b/source/n/pinentry/pinentry.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 2006, 2014 Robby Workman, Tuscaloosa, AL, USA -# Copyright 2007, 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2007, 2008, 2009, 2010, 2018, 2022 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=pinentry VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -96,7 +96,10 @@ CXXFLAGS="$SLKCFLAGS" \ --infodir=/usr/info \ --enable-pinentry-curses \ --enable-fallback-curses \ + --enable-pinentry-emacs \ --enable-pinentry-gtk2 \ + --enable-pinentry-qt \ + --enable-pinentry-tty \ --build=$ARCH-slackware-linux$ARCHQUADLET \ --host=$ARCH-slackware-linux$ARCHQUADLET || exit 1 @@ -106,9 +109,6 @@ make install DESTDIR=$PKG || exit 1 find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -# Just in case: a compat link -ln -s pinentry-qt $PKG/usr/bin/pinentry-qt4 - find $PKG/usr/man -type f -exec gzip -9 {} \+ rm $PKG/usr/info/dir |