我正在尝试使用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中提供这些库的内容?
答案 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"
}
]
}
中找到此示例