blob: ae51a0016c36430c5640bee565186de95c87183b (
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
|
# Contributor: Clayton Craft <clayton@craftyguy.net>
# Maintainer: Clayton Craft <clayton@craftyguy.net>
pkgname=vvmplayer
pkgver=2.3.0
pkgrel=0
pkgdesc="front end GUI to display, play, and delete visual voicemails"
url="https://gitlab.com/kop316/vvmplayer"
arch="all !s390x !riscv64" # no libhandy1
license="GPL-3.0-only"
makedepends="
callaudiod-dev
desktop-file-utils
evolution-data-server-dev
glib-dev
gst-plugins-base-dev
gstreamer-dev
gtk4.0-dev
libadwaita-dev
meson
"
checkdepends="xvfb-run"
depends="gst-plugins-ugly gst-plugins-good gst-libav vvmd"
source="https://gitlab.com/kop316/vvmplayer/-/archive/$pkgver/vvmplayer-$pkgver.tar.gz"
build() {
abuild-meson \
-Db_lto=true \
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
xvfb-run -a meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="
4a78021e899a051cd19ae2be79d2750f03a2cffb0610646d0002158f1c2ffae811644267302846658cb9f8ba3b7a5efefa10c71e8ed709bd406ae112c42af86e vvmplayer-2.3.0.tar.gz
"
|