https://pgmodeler.io/support/installationは次のように述べています。
依存関係の解決
ソース コードを正常にコンパイルしてバイナリをインストールしたら、いくつかの依存関係を pgModeler のインストール フォルダにコピーする必要があります。また、いくつかのコマンドを実行して、バイナリが適切に配置されるようにする必要があります。
GNU/リナックス
1: cd $QT_ROOT/lib 2: cp libQt5DBus.so.5 libQt5PrintSupport.so.5 libQt5Widgets.so.5 libQt5Network.so.5 libQt5Gui.so.5 libQt5Core.so.5 libQt5XcbQpa.so.5 libQt5Svg.so.5 libicui18n.so.5* libicuuc.so.5* libicudata.so.5* $PGMODELER_ROOT/lib 3: cd $QT_ROOT/plugins 4: mkdir $PGMODELER_ROOT/lib/qtplugins 5: mkdir $PGMODELER_ROOT/lib/qtplugins/imageformats 6: mkdir $PGMODELER_ROOT/lib/qtplugins/printsupport 6: mkdir $PGMODELER_ROOT/lib/qtplugins/platforms 7: cp -r imageformats/libqgif.so imageformats/libqico.so imageformats/libqjpeg.so imageformats/libqsvg.so imageformats/libqtga.so imageformats/libqtiff.so imageformats/libqwbmp.so $PGMODELER_ROOT/lib/qtplugins/imageformats 8: cp -r printsupport/libcupsprintersupport.so $PGMODELER_ROOT/lib/qtplugins/printsupport 9: cp -r platforms/libqxcb.so $PGMODELER_ROOT/lib/qtplugins/platforms 10: echo -e "[Paths]\nPrefix=.\nPlugins=lib/qtplugins\nLibraries=lib" > $PGMODELER_ROOT/qt.conf 11: cp $PGMODELER_SOURCE/start-pgmodeler.sh $PGMODELER_SOURCE/pgmodeler.vars $PGMODELER_ROOT 12: chmod +x $PGMODELER_ROOT/start-pgmodeler.sh
make
との後make install
、プログラムの実行時に依存関係を動的に解決 (動的リンク) できますか? 上記を行う目的は何ですか?
代わりに deb ファイルを作成するために実行した場合sudo checkinstall
、上記のように依存関係を解決する必要がありますか?
ありがとう!