私の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