我如何找出哪个flatpak sdk提供了某个库?

时间:2016-07-13 20:26:58

标签: flatpak

我正在尝试使用flatpak打包应用程序。目前元数据非常简单:

[Application]
name=io.brackets.App
runtime=org.gnome.Platform/x86_64/3.20
sdk=org.gnome.Sdk/x86_64/3.20
command=brackets

应用程序依赖于未包含在sdk中的某些库,因为它在运行时失败:

/app/bin/brackets: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory

我知道如何找到RPM版本中的正确运行时,但是如何找到在flatpak中提供这些库的内容?

1 个答案:

答案 0 :(得分:3)

由于自从(IIRC)Gnome 3的第一个版本以来GConf已被弃用,它不在Gnome运行时中。你必须捆绑它。

使用flatpak-builder这将最终成为类似于以下

的模块
    {
        "name": "gconf",
        "config-opts": ["--disable-orbit"],
        "sources" : [
            {
                "type": "archive",
                "url": "http://ftp.gnome.org/pub/GNOME/sources/GConf/3.2/GConf-3.2.6.tar.xz",
                "sha256": "1912b91803ab09a5eed34d364bf09fe3a2a9c96751fde03a4e0cfa51a04d784c"
            }
        ]
    }

可以在spotify flatpak wrapper

中找到此示例