Hi,. This may be a new / old topic ?
I am a Visual Graphic Dessigner. These days, I do use Affinity on Linux.
…but …one issue for me.
Is there anyway to install BlueGriffon for Fedora / Nobara ?
I have Google and everything. I couldn’t find any way to install BlueGriffon.
BlueGriffon is the only issue that I have.
Fedora / Nobara are very awesome for me, personality.
Any special formulas to build BlueGriffon and run it ?
I have told that any App is totally possible to install and run on any Linux.
Any ideas ?
Thanks.
I think BlueGriffon is long dead:
That’s not true. 
People are still using it. People are using seamonkey for webdesign.
BlueGriffon works great with Arch Linux and Windows 11.
Itis very possible to make it as RPM file or a good AppImage, Not good AppImage that I may find.
I suggest you find another distro that still has python2, this is required to build BlueGriffon
gnwiii
(George N. White III)
5
As others have noted, BlueGriffon is no longer maintained. For other options see: https://alternativeto.net/software/bluegriffon/
Thanks but no need. I also using Visual Studio Code as well. Thanks
but,…Fedora has python 3 right LOL
vgaetera
(Vladislav Grigoryev)
9
Here’s a couple of methods that work for F44:
# Native
sudo dnf install dbus-glib
PKG="http://bluegriffon.org/freshmeat/3.1/\
bluegriffon-3.1.Ubuntu18.04-x86_64.tar.bz2"
wget ${PKG}
tar -x -f ${PKG##*/}
tee ~/.local/share/applications/\
bluegriffon.desktop << EOF > /dev/null
[Desktop Entry]
Type=Application
Name=BlueGriffon
Exec=${PWD}/bluegriffon/bluegriffon
EOF
# Distrobox
sudo dnf install distrobox podman
PKG="http://bluegriffon.org/freshmeat/3.1/\
bluegriffon-3.1.Ubuntu18.04-x86_64.deb"
distrobox assemble create --file /dev/stdin << EOI
[ubuntu]
image="ubuntu:18.04"
additional_packages="wget libgtk-3-0 libdbus-glib-1-2 libxt6"
init_hooks="wget ${PKG}; apt install ./${PKG##*/}"
exported_apps="bluegriffon"
EOI