내 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