Re: Help with package AppImage support

2021-11-29 Thread Ricardo Wurmus
Ekaitz Zarraga writes: Hi Ricardo, appimagekit includes a copy of libappimage; that repository contains a Findsquashfuse.cmake file, which defines how squashfuse is found:

Re: Help with package AppImage support

2021-11-29 Thread Ekaitz Zarraga
Hi Ricardo, > appimagekit includes a copy of libappimage; that repository > contains a Findsquashfuse.cmake file, which defines how squashfuse > is found: > > https://github.com/AppImage/libappimage/blob/13f401a4a384ec59ec9a144e2a7006adf751571f/cmake/Modules/Findsquashfuse.cmake > > Ricardo I

Re: Help with package AppImage support

2021-11-29 Thread Ricardo Wurmus
Ekaitz Zarraga writes: The first step should be to figure out if CMake uses one of these Find* macros or some other way. If it’s a Find* macro, determine if it is provided by libsquashfuse or appimagekit. This is the only reference I find to squashfuse so I don't know what's the

Re: Help with package AppImage support

2021-11-29 Thread Ekaitz Zarraga
Hi Ricardo, > Ekaitz Zarraga writes: > > >> Maybe “TARGET NOT found” is CMake’s original way of saying that > >> you’re > >> missing a dependency (libsquashfuse), no? > > > > I mean, I already reached that conclusion but if you check the > > packages in the > > original message, the dependency

Re: Help with package AppImage support

2021-11-28 Thread Ricardo Wurmus
Ekaitz Zarraga writes: Maybe “TARGET NOT found” is CMake’s original way of saying that you’re missing a dependency (libsquashfuse), no? I mean, I already reached that conclusion but if you check the packages in the original message, the dependency is included. I can't find why isn't it

Re: Help with package AppImage support

2021-11-28 Thread Ekaitz Zarraga
> Hi, > > The log reads: > > --8<---cut here---start->8--- > -- Found PkgConfig: > /gnu/store/krpyb0zi700dcrg9cc8932w4v0qivdg9-pkg-config-0.29.2/bin/pkg-config > (found version "0.29.2") > -- Importing target libfuse via pkg-config (fuse, shared) > -- Checking

Re: Help with package AppImage support

2021-11-28 Thread Ludovic Courtès
Hi, The log reads: --8<---cut here---start->8--- -- Found PkgConfig: /gnu/store/krpyb0zi700dcrg9cc8932w4v0qivdg9-pkg-config-0.29.2/bin/pkg-config (found version "0.29.2") -- Importing target libfuse via pkg-config (fuse, shared) -- Checking for module

Re: Help with package AppImage support

2021-11-23 Thread Ekaitz Zarraga
> Could you show the CMake output? I attach it in this email. It's a "TARGET NOT FOUND" :S > Sometimes there’s a -D flag you need to pass to help it find the > package. (I’m not much of a CMake person though…) yeah... I tried many, but I didn't find the one. > Thanks for working on it! Thank

Re: Help with package AppImage support

2021-11-23 Thread Ludovic Courtès
Hello! Ekaitz Zarraga skribis: > I having issues with AppImageKit (see below)... I'm not able to make it load > the libsquashfuse I already packaged. CMake refuses to find it. > > I could use a hand to make this package work or at least some help with CMake, > because I'm not used to work with

Help with package AppImage support

2021-11-22 Thread Ekaitz Zarraga
Hi, I'm trying to package some AppImage support for later adding it to `guix pack`. I having issues with AppImageKit (see below)... I'm not able to make it load the libsquashfuse I already packaged. CMake refuses to find it. I could use a hand to make this package work or at least some help