我仍在努力使Quicklist工作,并发现了问题:快速创建debian/rules
sed -i 's|Exec=.*|Exec=/opt/extras.ubuntu.com/wakeonplan/bin/wakeonplan|' debian/wakeonplan/usr/share/applications/extras-wakeonplan.desktop; \如何阻止它使用带有CLI选项的静态快速列表?
发布于 2012-07-06 10:51:11
我想你撞到一只虫子很快就进来了了。
作为解决办法,您可以执行以下操作:
quickly package --extrasrules文件夹中的debian文件并修复sed行debuild -Sdput ppa:yourusername/ppa ../projectname_*_source.changes如果您收到签名错误,请确保在~/.bashrc file末尾添加了以下内容:
export DEBFULLNAME='Your name'
export DEBEMAIL='your.email@example.com'请注意:
DEBFULLNAME和DEBEMAIL的值应该与GPG键的值匹配。source ~/.bashrc重新加载文件debian/changelog文件是否有一个与DEBFULLNAME和DEBEMAIL相匹配的有效电子邮件。debian/changelog文件中的版本号。在任何情况下,都要确保没有-public后缀,也没有任何带有-的东西。https://askubuntu.com/questions/160336
复制相似问题