From 55f2b6e53941ff850332c93973f1aec3b883f041 Mon Sep 17 00:00:00 2001 From: Sean Doran Date: Fri, 27 Feb 2026 10:13:33 -0500 Subject: [PATCH] Fix PKGBUILD to comply with Arch/Python package guidelines --- PKGBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 171bba1..2ea68b8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,22 +7,23 @@ arch=('any') url="https://github.com/sean351/turn-up-arch" license=('MIT') depends=( - 'python>=3.10' + 'python' 'python-pyserial' 'python-pulsectl' - 'pipewire-pulse' # or pulseaudio — provides the PulseAudio socket + 'pipewire-pulse' ) makedepends=( 'python-build' 'python-installer' + 'python-wheel' 'python-hatchling' ) optdepends=( 'playerctl: media key support via button commands' + 'pulseaudio: alternative to pipewire-pulse' ) -backup=() source=("$pkgname-$pkgver.tar.gz::https://github.com/sean351/turn-up-arch/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('SKIP') # Replace with actual checksum before submitting to AUR +sha256sums=('SKIP') build() { cd "$pkgname-$pkgver"