From 0df185e3ac416e90e692b17fc019d8cf4a8bcb46 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 3 Apr 2019 21:50:17 +0200 Subject: [PATCH] community/network-manager-applet: fix after nm upgrade Currently, it can't be installed (missing so:libnm-glib.so.4). I've tried to bump the pkgrel only, but it won't build anymore because the legacy libnm has been removed in the NetworkManager release we're using (https://github.com/NetworkManager/NetworkManager/pull/308). Add --without-libnm-gtk to fix it. --- community/network-manager-applet/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/network-manager-applet/APKBUILD b/community/network-manager-applet/APKBUILD index f0a300e08845..849262fc2d85 100644 --- a/community/network-manager-applet/APKBUILD +++ b/community/network-manager-applet/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: pkgname=network-manager-applet pkgver=1.8.18 -pkgrel=0 +pkgrel=1 pkgdesc="GTK network manager applet" url="https://wiki.gnome.org/Projects/NetworkManager" arch="all" @@ -39,7 +39,8 @@ build() { --localstatedir=/var \ --with-gcr \ --enable-static=no \ - --without-selinux + --without-selinux \ + --without-libnm-gtk make }