From b3ef5cda489fc1225b2fce4044aba0787428737c Mon Sep 17 00:00:00 2001 From: Arnav Singh Date: Sat, 7 Oct 2023 22:44:20 -0700 Subject: [PATCH] community/snapshot: fix missing dependencies Snapshot looks up cameras via `pipewiredeviceprovider` and crashes if it does not exist, so add dependencies on gst-plugin-pipewire and pipewire. Also camerabin needs gst-plugins-bad so add that too. --- community/snapshot/APKBUILD | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/community/snapshot/APKBUILD b/community/snapshot/APKBUILD index decc3a3a4c6..f0097cbae23 100644 --- a/community/snapshot/APKBUILD +++ b/community/snapshot/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: team/gnome pkgname=snapshot pkgver=45.0 -pkgrel=0 +pkgrel=1 pkgdesc="Take pictures and videos" url="https://gitlab.gnome.org/GNOME/snapshot" arch="all !s390x" @@ -18,6 +18,11 @@ makedepends=" libadwaita-dev meson " +depends=" + gst-plugin-pipewire + gst-plugins-bad + pipewire + " subpackages="$pkgname-lang" source="https://download.gnome.org/sources/snapshot/${pkgver%%.*}/snapshot-$pkgver.tar.xz"