blob: b7ab924de20596d9a8cff2b7186c23111d881890 (
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
|
# Maintainer: nerdyslacker <karyan40024@gmail.com>
pkgname=dinox
pkgver=1.1.8.1
pkgrel=1
pkgdesc="Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO 1 + 2 Encryption & API Botmother and AI API DTMF MQTT Support"
url="https://github.com/rallep71/dinox"
arch=('x86_64')
license=('GPL-3.0-only')
depends=('glib2' 'glib-networking' 'gtk4' 'libadwaita' 'gpgme' 'libgee' 'libgcrypt'
'libsoup3' 'sqlcipher' 'libsecret' 'icu' 'libdbusmenu-glib'
'json-glib' 'qrencode' 'libnice' 'gstreamer' 'gst-plugin-gtk'
'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad'
'gst-plugin-pipewire' 'libsrtp' 'gnutls'
'webrtc-audio-processing' 'gdk-pixbuf2' 'mosquitto')
makedepends=('git' 'meson' 'vala' 'ninja')
source=("https://github.com/rallep71/dinox/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('22bc46e17f254a94c1ea599c215405ec53440168f178ddad6b0f00e05343efb0')
build() {
arch-meson "${pkgname}-${pkgver}" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "${pkgdir}"
}
|