如何对指示器小程序应用补丁?

如何对指示器小程序应用补丁?

我有一个名为“incator.patch”的补丁。我该如何将其应用于应用程序“indicator applet”并使其运行?该错误将解决由“indicator applet”引起的键绑定错误。

补丁在这里:launchpadlibrarian.net/52193166/hotkey.patch。

答案1

要快速生成应用补丁的新软件包,请在 gnome-terminal 中运行以下命令:

sudo apt-get build-dep indicator-applet
sudo apt-get install devscripts
apt-get source indicator-applet
cd indicator-applet-<version-string>
cp /path/to/patch/indicator.patch .
patch --dry-run -p1 < indicator.patch

仅当成功且无错误时才继续。

patch -p1 < indicator.patch
debuild -us -uc

现在等待编译,如果一切正常,您将获得一些可供安装的 deb:

cd ..
sudo dpkg -i *.deb # I'm lazy, just choose the debs that are already installed

你需要这样做每次指示器小程序已更新(但我不知道在稳定版本中此类更新发生的频率)。

相关内容