我想用我之前写的一个小 C 程序来构建我的 deb 包。
我可以这样做,但我必须重命名源文件夹才能做到这一点。
我将它从 myprogramm 重命名为 myprogram-1.0,然后用它创建 myprogram_1.0.orig.tar.gz。
有没有办法可以在不重命名源文件夹的情况下构建包?
我用来debuild -us -uc
实际构建包。
这是我的 debian/规则:
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_install:
dh_auto_install --destdir=debian/myprogramm/usr
debian/控制:
Source: myprogram
Maintainer: name <name@name>
Section: misc
Priority: optional
Standards-Version: 3.9.2
Build-Depends: debhelper (>= 9)
Package: myprogram
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: myprogram is a command line tool to create html templates.
debian/更新日志:
myprogram (1.0-1) UNRELEASED; urgency=medium
* Initial release.
-- name <name@name> Wed, 05 Sep 2018 11:32:17 +0200
谢谢你的帮助。