Nam*_*arl 2 unix debian packaging vala
当我尝试使用 构建我的 vala 应用程序时debuild -i -us -uc -b,包已构建,但lintian抱怨我的控制文件缺少对 的依赖项libc:
E: <my app>: missing-dependency-on-libc needed by <path to my binary>
Run Code Online (Sandbox Code Playgroud)
我的依赖部分应该添加什么?
Source: <my_app>
Section: x11
Priority: optional
Maintainer: <me>
Build-Depends: cmake (>= 2.8),
debhelper (>= 9),
libgee-0.8-dev,
libglib2.0-dev,
valac (>= 0.22)
Standards-Version: 3.9.5
Homepage: <my_website>
Run Code Online (Sandbox Code Playgroud)
作为@apmasell,问题来自我在问题中包含的部分下面的部分。
我忘了添加
Depends: ${misc:Depends}, ${shlibs:Depends}
Run Code Online (Sandbox Code Playgroud)
到我的二进制包。