Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 1711C781A8B for ; Fri, 6 Dec 2019 22:18:45 +0000 (UTC) Received: (Migadu outbound); Fri, 06 Dec 2019 22:18:44 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from loki.fritz.box (pD9FD6660.dip0.t-ipconnect.de [217.253.102.96]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 15CA248F-D2B1-4ED6-B6B4-789168BED006.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Fri, 06 Dec 2019 22:18:44 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH] community/swayidle: add elogind support Date: Fri, 6 Dec 2019 23:18:42 +0100 Message-Id: <20191206221842.11468-1-galen@galenabell.com> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=S9zzCBGHuas1drmjfjEDQafK56iuKlUJDjUbkOUwpUM=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=I7BHsEHZ+kTRmLhZBgP4O9o92iJcSq3lj7RNYMjmefmEF0ZZPNDj4OiUXx23Wh4qQvSU1g6I7jqk1yZCiOZV3EPzyqKn110sMiSf4zD8/aZatnC128ivSKYBPF//2p8bommf9y+97Hv0QhiCTqavWdbv7SAQ9W3ZxXVi6Nj8bpE= build swayidle with elogind support to enable `before-sleep` option --- community/swayidle/APKBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/community/swayidle/APKBUILD b/community/swayidle/APKBUILD index 2b2acc92a4..c2864daabd 100644 --- a/community/swayidle/APKBUILD +++ b/community/swayidle/APKBUILD @@ -9,6 +9,8 @@ arch="all" license="MIT" options="!check" # no test suite included makedepends=" + elogind-dev + libelogind meson ninja scdoc @@ -24,7 +26,7 @@ subpackages=" source="$pkgname-$pkgver.tar.gz::https://github.com/swaywm/$pkgname/archive/$pkgver.tar.gz" build() { - meson build --prefix /usr + meson build -Dlogind=enabled -Dlogind-provider=elogind --prefix /usr ninja -C build } -- 2.24.0