-
Make Sure dbus is Running
brew services start dbus
If you encounter an error similar to
Error: Formula 'dbus' has not implemented #plist, #service or installed a locatable service file
, the following command may fix the issue:brew services start d-bus
-
Select pinentry-mac as the Default Program
echo "pinentry-program /usr/local/bin/pinentry-mac" > ~/.gnupg/gpg-agent.conf killall -9 gpg-agent
-
If You Need to Have Kleopatra First in Your PATH, Run:
echo 'export PATH="/usr/local/Cellar/kleopatra/22.07.80/bin:$PATH"' >> ~/.zshrc
(Note: Command here is for zshell)
-
If You Want to Add This Application to the Launchpad, Run:
cd /Applications && unzip /usr/local/Cellar/kleopatra/22.07.80/bin/app.zip
-
Kleopatra is Keg-Only, Which Means it Was Not Symlinked Into /opt/homebrew to Prevent Conflicts With Any GPGme or KDE Libraries. If You Must Create a Symlink, Run:
export LDFLAGS="-L/usr/local/Cellar/kleopatra/22.07.80/lib" export CPPFLAGS="-I/usr/local/Cellar/kleopatra/22.07.80/include"
-
For compilers to find kleopatra, You May Need to Set:
export LDFLAGS="-L/usr/local/Cellar/kleopatra/22.07.80/lib" export CPPFLAGS="-I/usr/local/Cellar/kleopatra/22.07.80/include"
-
For pkg-config to Find Kleopatra, You May Need to Set:
export PKG_CONFIG_PATH="/usr/local/Cellar/kleopatra/22.07.80/lib/pkgconfig"