From 580a51c3500602b2f7508fc4ee1a73d2145e82b4 Mon Sep 17 00:00:00 2001 From: Breadway Date: Wed, 17 Jun 2026 14:16:44 +0800 Subject: [PATCH] fix(pkg): move python-pywal to optdepends in PKGBUILD python-pywal is AUR-only; makepkg cannot resolve it as a hard depends. --- packaging/arch/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index aaeafc4..7f20f48 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -8,8 +8,9 @@ arch=('x86_64') url="https://github.com/Breadway/breadpaper" license=('MIT') options=(!lto !debug) -depends=('glibc' 'python-pywal') +depends=('glibc') optdepends=( + 'python-pywal: colour palette generation from wallpaper (AUR)' 'awww: Wayland wallpaper daemon' ) makedepends=('rust' 'cargo')