回答:
あるパッケージを別のパッケージに依存させるには、debian/control
ファイルで関係を指定する必要があります。あなたはできるUbuntuのパッケージングガイドでは、このファイルの構文について読みました。そのガイドの残りの部分は、Ubuntuのパッケージングプログラムの概要を説明するのに役立つでしょう。
簡単に言うと、debian/control
ファイルは次のようになります。
Source: my-game
Section: devel
Priority: optional
Maintainer: Jane Doe <packager@example.com>
Standards-Version: 3.9.3
Build-Depends: debhelper (>= 7)
Homepage: http://www.gnu.org/software/hello/
Package: my-game
Architecture: any
Depends: ${shlibs:Depends}, love (>= 0.7.2)
Description: a game made with the LÖVE framework
This game is really amazing.
.
It has many features.
特に次の行に注意してください:
依存:$ {shlibs:Depends}、愛(> = 0.7.2)
./confgure && make && make install
、GNU Autotoolsを使用するアプリケーション)も、非常に簡単です。Debhelperは、これらの非常に一般的なケースで多くのヒューリスティックを使用します。