Questions tagged [flatpak-builder]

10 questions
3
votes
2 answers

flatpak-builder with local sources and dependancies

How I can build local sources and dependancies with flatpak-builder? I can build local sources flatpak build ../dictionary ./configure --prefix=/app I can extract and build application with dependancies with a .json flatpak-builder --repo=repo…
flc
  • 33
  • 5
2
votes
1 answer

Is there a flatpak runtime that contains java?

I'm currently trying to convert my java project into a flatpak package. But, in order to run the .jar file i need java which looks like isn't part of the freedesktop runtime. Is there any runtime that comes with java or do I have to make the jdk…
Kweenix
  • 51
  • 1
  • 4
1
vote
1 answer

How do I set the version string of my flatpak application?

When I run flatpak list some applications have a version: $ flatpak list Name Application ID Version Branch Origin Installation Cambalache …
ea7ababe
  • 373
  • 5
  • 13
1
vote
1 answer

Using PIP to install Pillow in a Flatpak

I've added a new function to a Python program which works when I run the program on my PC, but it isn't working in my Flatpak. I assumed that it was probably because the Pillow version on my PC (8.3.2) is rather more recent than that in the Flatpak…
user4588415
0
votes
0 answers

Cannot build flatpak-builder beacuse no appstream.compose?

I cannot find appstream.compose module. It is needed for flatpak-builder: $ meson setup _build (git)-[main] $ meson install -C _build The Meson build system Version: 1.1.1 Source dir:…
psprint
  • 3
  • 2
0
votes
0 answers

How to inspect the contents of a Flatpak runtime?

flatpak install flathub org.kde.Platform//5.15-22.08 This sample command would install the KDE Platform Runtime. But how do I check what's inside of it? E.g. what binaries or libraries it contains (possibly after installation).
R A
  • 149
  • 1
  • 9
0
votes
1 answer

flatpak define dependency in manifest

How to add another flatpak packages as a dependency to my app? I want my app to be able to call mpv, so it would be nice to install io.mpv.Mpv along with my app.
microo8
  • 3,568
  • 5
  • 37
  • 67
0
votes
1 answer

How to install eigen library (or any other header-only library) into flatpak-builder environment?

I'm trying to incorporate the eigen library into the flatpak build of my application, but can't figure out how to do it properly. So far, I've only used libraries using the cmake-ninja as buildsystem and that has worked quite well. Since eigen is a…
codeling
  • 11,056
  • 4
  • 42
  • 71
0
votes
1 answer

Why does vue-cli-service not find electron-builder while building the Flatpak?

I am trying to Flatpak a Vuejs/Electron application. During build-time I can call Electron-Builder (but because it is a Vue application it complains about not finding background.js). The standard way of packaging Vuejs seems to be to…
tobias47n9e
  • 2,233
  • 3
  • 28
  • 54
0
votes
1 answer

Electron app Failed to get ipaddress when exported as Flatpak

I am trying to make a Flatpak for my little application “OpenSpeedTest-Server” This is a simple network performance estimation tool. It is working fine on Windows, Mac and Linux (DEB). 1) When i Export the same in Flatpak, Application unable to get…