debian/control ファイルに手動で依存関係を追加します。

debian/control ファイルに手動で依存関係を追加します。

私のLinuxアプリケーション用の.debインストーラをビルドしようとしています。私のアプリケーションがコマンドラインを介してffmpegとxjadeoを呼び出す以外はこれを行います(ただし接続されていない)ので、私のアプリケーションがインストールされたときにそれらをインストールしたいと思います。

私の現在の制御ファイルは次のとおりです。

Depends: ${shlibs:Depends}, ${misc:Depends}

しかし、xjadeoとffmpegを追加するとエラーが発生します。

Depends: ${shlibs:Depends}, ${misc:Depends}, ffmpeg, xjadeo

これらの依存関係を指定する正しい方法は何ですか?

Package ffmpeg was not found in the pkg-config search path.
Perhaps you should add the directory containing `ffmpeg.pc'
to the PKG_CONFIG_PATH environment variable
No package 'ffmpeg' found
Package xjadeo was not found in the pkg-config search path.
Perhaps you should add the directory containing `xjadeo.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xjadeo' found

ベストアンサー1

おすすめ記事