On 16.05.2021 17:30, Adam Borowski wrote:
On Sun, May 16, 2021 at 05:25:19PM +0200, Gürkan Myczko wrote:
On 15.05.2021 21:58, Adam Borowski wrote:
> On Thu, Apr 22, 2021 at 11:58:08AM +0200, Gürkan Myczko wrote:
> > * Package name : sfxr-qt
> It builds, but on trying to start:
during my test, after a small change how it builds, installs and
starts.
> QQmlApplicationEngine failed to load component
> qrc:/main.qml:288:9: Type FileActions unavailable
> qrc:/FileActions.qml:27:9: Type FileDialog unavailable
>
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Dialogs/DefaultFileDialog.qml:42:1:
> module "QtQuick.Controls" version 1.2 is not installed
Mind retrying? #3
https://mentors.debian.net/debian/pool/main/s/sfxr-qt/sfxr-qt_1.3.0+git20210422-1.dsc
QQmlApplicationEngine failed to load component
qrc:/main.qml:288:9: Type FileActions unavailable
qrc:/FileActions.qml:27:9: Type FileDialog unavailable
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Dialogs/DefaultFileDialog.qml:42:1:
module "QtQuick.Controls" version 1.2 is not installed
which is same as the above...
and #4 ?
If it still fails, I guess it's missing another one of these:
apt-cache search ^qml- |awk '{print $1}'
A quick check to figure which one it is would be:
for a in `apt-cache search ^qml- |awk '{print $1}'`; do
sfxr-qt && (echo $a;exit) #mailtome result
apt-get install -uy $a
done
Meow!