From aca6aa6dd6f4e1687ee20a9df417edf6bc1239ef Mon Sep 17 00:00:00 2001 From: Luca Matei Pintilie Date: Fri, 5 Jan 2024 22:56:45 +0100 Subject: [PATCH] profanity: Add qrcode support --- srcpkgs/profanity/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template index 2642a12ec0d71..d43724435b57e 100644 --- a/srcpkgs/profanity/template +++ b/srcpkgs/profanity/template @@ -1,7 +1,7 @@ # Template file for 'profanity' pkgname=profanity version=0.14.0 -revision=1 +revision=2 build_style=gnu-configure configure_args="$(vopt_enable notify notifications) $(vopt_enable otr) $(vopt_enable pgp) $(vopt_enable python python-plugins) $(vopt_enable plugins) @@ -12,7 +12,7 @@ makedepends="libcurl-devel libglib-devel libstrophe-devel readline-devel sqlite- $(vopt_if notify libnotify-devel) $(vopt_if otr 'libotr-devel libgcrypt-devel') $(vopt_if pgp gpgme-devel) $(vopt_if python python3-devel) $(vopt_if gtk gtk+3-devel) $(vopt_if xscreensaver libXScrnSaver-devel) - $(vopt_if omemo 'libsignal-protocol-c-devel libgcrypt-devel')" + $(vopt_if omemo 'libsignal-protocol-c-devel libgcrypt-devel') $(vopt_if qrcode qrencode-devel)" checkdepends="cmocka-devel" short_desc="Console based XMPP client" maintainer="Orphaned " @@ -29,10 +29,11 @@ case "$XBPS_TARGET_MACHINE" in esac # Package build options -build_options="notify otr pgp omemo gtk python xscreensaver cplugins plugins" -build_options_default="notify otr pgp gtk omemo python cplugins plugins xscreensaver" +build_options="notify otr pgp omemo gtk python xscreensaver cplugins plugins qrcode" +build_options_default="notify otr pgp gtk omemo python cplugins plugins xscreensaver qrcode" desc_option_otr="Enable support for OTR encryption" desc_option_pgp="Enable support for OpenPGP encryption" desc_option_omemo="Enable support for OMEMO encryption" desc_option_plugins="Enable support for plugins" desc_option_cplugins="Enable support for c-plugins" +desc_option_qrcode="Enable support for exchanging OMEMO information via QR code"