summaryrefslogtreecommitdiff
path: root/libre/jami-qt/PKGBUILD
blob: abccb3a3652fa1e2e73ba2664aacc74956f77e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer (arch): Bruno Pagani <archange@archlinux.org>


# parabola changes and rationale:
#  - no changes
#  - temporary 'jami-qt' build without qt6-webengine
#    the next jami release should have this VCS change;
#    so the arch pckage will be FDSG-fit then
#  - NOTE: this is built from VCS; but so was the
#    latest arch package - AFAIK, this should be
#    named 'jami-qt-git' - it is a one-time
#    blacklist replacement though; so it is less
#    troublesome to keep the arch pkgname
#  - NOTE: jami-{daemon,libclient,qt} versions are all tightly coupled,
#          even at the VCS level
#          implied build order: jami-daemon <- jami-libclient <- jami-qt


pkgname=jami-qt
pkgver=20220505
pkgrel=1
pkgrel+=.parabola1
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=(jami-libclient glib2 gdk-pixbuf2 libnm libnotify qrencode
         qt6-declarative qt6-multimedia qt6-networkauth qt6-svg
         qt6-5compat qt6-webengine qt6-webchannel)
depends=( ${depends[*]/qt6-webengine/} )
makedepends=(git cmake python qt6-tools)
replaces=(jami-gnome)
conflicts=(jami-gnome)
_commit=dd0dc87a0110b55f7f5ee450e13520c683e78650
source=(git+https://git.jami.net/savoirfairelinux/jami-client-qt.git#commit=${_commit})
md5sums=(SKIP)

# pkgver() {
#   cd jami-client-qt
#   TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d HEAD
# }

build() {
  cmake -B build -S jami-client-qt \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_BUILD_TYPE=None \
    -DWITH_WEBENGINE=false \
    -Wno-dev
  make -C build
}

package() {
  make -C build DESTDIR="${pkgdir}" install
}