From 467f9a90d6f8b899f364237a49703031291f41ad Mon Sep 17 00:00:00 2001 From: Erik Reider <35975961+ErikReider@users.noreply.github.com> Date: Sun, 18 Dec 2022 11:35:37 +0100 Subject: [PATCH] Added PKGBUILD support for aarch64 and armv7h --- PKGBUILD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index cba369b..4720af3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,11 @@ pkgrel=1 pkgdesc="Prevents swayidle from sleeping while any application is outputting or receiving audio" _pkgfoldername=SwayAudioIdleInhibit url="https://github.com/ErikReider/$_pkgfoldername" -arch=(x86_64) +arch=( + 'x86_64' + 'aarch64' # ARM v8 64-bit + 'armv7h' # ARM v7 hardfloat +) license=(GPL) depends=("wayland>=1.14.91" "wayland-protocols" "libpulse") makedepends=(gcc meson git)