Questions tagged «debuild»

3
如何使用debuild运行并行make?
我正在尝试打包一个我(共同)编写的软件。我在用着 debuild -i -us -uc -b 从原理上讲,这很好。为了缩短编译时间,我想进行分解以并行运行make(例如,我通常通过运行来运行make -j4)。我在网络上找到了一些建议如下的位置: debuild -eDEB_BUILD_OPTIONS="parallel=4" -us -uc -b debuild -j4 -us -uc -b 另一个站点建议向debian/rules基本设置好的文件中添加一些代码 MAKEFLAGS += -j4 但是,这些似乎都不起作用。我错过了什么吗?还是应该更改源代码的autoconf / automake设置中的某些内容?

2
尝试破坏已修改的程序包时出现“ dpkg-source:对源的无法表示的更改”
我使用以下命令将源下载到软件包中: $ apt-get source gkrellweather 我还确保我具有编译依赖项: $ sudo apt-get build-dep gkrellweather 我测试了它是否可以正常运行: $ cd gkrellweather-2.0.8 $ debuild 它.deb在上面的文件夹中构建了一个程序包,我可以使用以下程序进行安装: $ sudo dpkg -i ../gkrellweather*.deb 好的,一切就绪。让我们开始吧! 我在Vim中打开了源代码,并做了一些想要的更改。然后我尝试重建: $ debuild 但我收到以下错误: ... dh_clean: Compatibility levels before 5 are deprecated (level 4 in use) dpkg-source -b gkrellweather-2.0.8 dpkg-source: warning: no source format specified in …
8 debuild 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.