在自定义apt-get中配置依赖包的安装

在自定义apt-get中配置依赖包的安装

我们可以创建一个名为 geomonitor-v1.0.1.deb 的自定义 .deb 包,然后为其配置 apt-get 存储库。这样我们就可以将其安装为apt-get install geomonitor

现在请让我们了解如何在安装 geomonitor 时配置安装依赖项。也就是说,为了使 geomonitor 应用程序运行,需要 mono-runtime 包,因此我们需要再次运行apt-get install mono-runtime以安装它。

因此请让我们知道,在安装时apt-get install geomonitor还应安装 mono-runtime 作为依赖包。有人能帮我们配置它吗?

答案1

编辑debian/control文件并添加mono-runtime到依赖字段:

Depends: mono-runtime

参考:http://packaging.ubuntu.com/html/debian-dir-overview.html#the-control-file

相关内容