eclipseo / reimage

Plasma 6 Service Menu ReImage
GNU General Public License v3.0
14 stars 4 forks source link

no way to install in KDE Neon #4

Open DoctorSubtilis opened 4 months ago

DoctorSubtilis commented 4 months ago

Even with betas 2.6 2: q6path problem qtpaths6: command not found. And after solving it (installed qt6 dev tools), a new problem:

/usr/bin/reimage-kdialog: line 674: : command not found

This is the line

    msg=$("${magick_bin}" "${input}" -colorspace "${value}" "${dir}/${base}_colorspace.${ext}" 2>&1)
DoctorSubtilis commented 4 months ago

I guess that the problem is that ${magick_bin} is not defined

simonbcn commented 4 months ago

It fails me in Arch Linux and it is because it uses qtpaths6 that in this OS is installed in /usr/lib/qt6/bin/qtpaths6. I think it would be better to use qtpaths as indicated in the KDE page about it: https://develop.kde.org/docs/apps/dolphin/service-menus/

blimp4242 commented 4 months ago

It fails me in Arch Linux and it is because it uses qtpaths6 that in this OS is installed in /usr/lib/qt6/bin/qtpaths6. I think it would be better to use qtpaths as indicated in the KDE page about it: https://develop.kde.org/docs/apps/dolphin/service-menus/

I'm also on Arch and had the same problem, but on my machine the qtpaths binary runs on qt5, i checked it by running: qtpaths --qt-version and it outputs 5.15.13.

In order to workaround to the problem i linked the binary in /usr/lib/qt6/bin/qtpaths6 to the /bin/ folder by running: ln /usr/lib/qt6/bin/qtpaths6 /bin/

After this the installation script worked as intended.