Date: Monday, October 18, 2021 @ 20:08:19 Author: archange Revision: 1030894
Initial addition of jami-qt to [community] Added: jami-qt/ jami-qt/repos/ jami-qt/trunk/ jami-qt/trunk/PKGBUILD ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Added: jami-qt/trunk/PKGBUILD =================================================================== --- jami-qt/trunk/PKGBUILD (rev 0) +++ jami-qt/trunk/PKGBUILD 2021-10-18 20:08:19 UTC (rev 1030894) @@ -0,0 +1,28 @@ +# Maintainer: Bruno Pagani <[email protected]> + +pkgname=jami-qt +pkgver=20211004 +pkgrel=1 +pkgdesc="Free and universal communication platform which preserves the users’ privacy and freedoms (Qt client)" +arch=(x86_64) +url="https://jami.net" +license=(GPL3) +groups=(jami) +depends=(libjamiclient jami-daemon glib2 gdk-pixbuf2 libnm libnotify qrencode + qt5-declarative qt5-svg qt5-webengine) +makedepends=(git cmake python qt5-quickcontrols2 qt5-tools) +_commit=e0b28eed7b4971d1ac96a234395fd7d045ac9cdd +source=(git+https://git.jami.net/savoirfairelinux/jami-client-qt.git#commit=${_commit}) +md5sums=(SKIP) + +build() { + cmake -B build -S jami-client-qt \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=None \ + -Wno-dev + make -C build +} + +package() { + make -C build DESTDIR="${pkgdir}" install +}
