mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-18 06:25:24 +02:00

This patch moves already existing packaging scripts from jami-project into client-qt. Introduced changes are: + WITH_SUBMODULE must search in system lib too because for packaging client-qt (for rpm) will be built separately, and will depend on jami-daemon. + Fix appdata.xml (replace old wiki with docs.jami.net) + path changes (because we build in client-qt not jami-project). GitLab: #853 Change-Id: I1313830d85c8094fcbcc52e22033a2add7b1e89f
8 lines
319 B
Bash
Executable file
8 lines
319 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
QT_JAMI_PREFIX=/usr/lib/libqt-jami
|
|
|
|
export PATH="${QT_JAMI_PREFIX}/bin:${PATH}"
|
|
export LD_LIBRARY_PATH="${QT_JAMI_PREFIX}/lib:${LD_LIBRARY_PATH}"
|
|
export PKG_CONFIG_PATH="${QT_JAMI_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}"
|
|
export CMAKE_PREFIX_PATH="${QT_JAMI_PREFIX}/lib/cmake:${CMAKE_PREFIX_PATH}"
|