Package Details: spicetify-cli 2.43.2-1

Git Clone URL: https://aur.archlinux.org/spicetify-cli.git (read-only, click to copy)
Package Base: spicetify-cli
Description: Command-line tool to customize Spotify client
Upstream URL: https://github.com/spicetify/cli
Keywords: customization spotify theme
Licenses: LGPL-2.1-only
Submitter: khanhas
Maintainer: khanhas (itsmeowdev)
Last Packager: itsmeowdev
Votes: 94
Popularity: 3.66
First Submitted: 2019-01-11 04:14 (UTC)
Last Updated: 2026-04-20 19:31 (UTC)

Latest Comments

1&nbsp2&nbsp3&nbsp4&nbsp5&nbsp6 Next › Last »

itsmeowdev commented on 2026-04-10 08:14 (UTC) (edited on 2026-04-10 08:18 (UTC) by itsmeowdev)

Sigh. I want it to extract to spicetify-cli... "cli" is not a very globally unique name...

makepkg works now.

kasanekasanete commented on 2026-04-06 11:00 (UTC) (edited on 2026-04-06 11:01 (UTC) by kasanekasanete)

Like this right? "cd ~/.cache/yay/spicetify-cli/ && sed -i 's/"${pkgname}-${pkgver}"/"cli-${pkgver}"/g' PKGBUILD && rm -rf src/ && makepkg -si" I was able to build it. Thank you to the guy below me.

rebellen commented on 2026-04-06 10:47 (UTC)

"The current PKGBUILD fails during build(), check(), and package() because it attempts to cd into ${pkgname}-${pkgver} (spicetify-cli-2.43.1), but the source archive actually extracts to a directory named cli-${pkgver} (cli-2.43.1).

Temporary fix for users: Edit the PKGBUILD and change all instances of cd "${pkgname}-${pkgver}" to cd "cli-${pkgver}"."

lolamalolama commented on 2026-04-06 09:33 (UTC)

~/.cache/yay/spicetify-cli/PKGBUILD: line 17: cd: spicetify-cli-2.43.1: No such file or directory ==> ERROR: A failure occurred in build(). Aborting... -> error making: spicetify-cli-exit status 4 -> Failed to install the following packages. Manual intervention is required: spicetify-cli - exit status 4

Just change to cli-2.43.1

itsmeowdev commented on 2026-04-06 01:06 (UTC) (edited on 2026-04-06 01:09 (UTC) by itsmeowdev)

Also stop filing orphan requests because the package is 2 days out of date. This is why I don't talk to other arch users.

3/30/26, 6:14PM

[PRQ#80667] Orphan Request for spicetify-cli

JoveYu [1] filed an orphan request for spicetify-cli [2]:

please update to 2.43.1

Seriously? I have a job, I cannot babysit this package. I think you will all survive if the package is out of date for one week.

itsmeowdev commented on 2026-04-06 00:38 (UTC) (edited on 2026-04-06 00:58 (UTC) by itsmeowdev)

As I have stated before, this package is set up to auto update. The maintainers released a beta version accidentally and it triggered the auto update script which was not designed to handle it. You're welcome to PR changes to my auto-updater: https://github.com/itsmeow/spicetify-cli-update

I have updated it to no longer do pre-releases.

yobson commented on 2026-03-30 18:15 (UTC)

+1 to why is this even tryna target a beta version, that should be a separate package

dasRAINBOW commented on 2026-03-28 10:51 (UTC)

easy fix

From 1664725c1cd8c7cf73bb744c4d02e1a164aff138 Mon Sep 17 00:00:00 2001
From: dasRAINBOW <devdasrainbow@gmail.com>
Date: Sat, 28 Mar 2026 11:23:29 +0100
Subject: [PATCH] Updated to version 2.43.1

---
 PKGBUILD | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index bd89caf..058eeca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,7 @@
 ## Maintainer: khanhas <xuankhanh963@gmail.com>, itsmeow <itsmeow@itsmeow.dev>
 pkgname=spicetify-cli
-pkgver=2.42.15-beta.1
+_upstream_ver=2.43.1
+pkgver=2.43.1
 pkgrel=1
 pkgdesc='Command-line tool to customize Spotify client'
 arch=('x86_64' 'i686')
@@ -9,12 +10,12 @@ license=('LGPL-2.1-only')
 makedepends=('go')
 depends=('glibc' 'bash')
 optdepends=('xdg-utils: Allows for opening directories in default file manager')
-source=("cli-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('54676dfd5f9fc6d78f530b8eb8f755fd2d69c915401e7946e2b25f28cc7676c1')
+source=("cli-${pkgver}.tar.gz::${url}/archive/v${_upstream_ver}.tar.gz")
+sha256sums=('f7f577c90e9b6e502ab05891f83f657038beded57bd6d09ab4421f87bc2542dd')


 build() {
-  cd "cli-${pkgver}"
+  cd "cli-${_upstream_ver}"
   export GO111MODULE="auto"
   export GOPATH="${srcdir}"
   export CGO_CPPFLAGS="${CPPFLAGS}"
@@ -26,13 +27,13 @@ build() {
 }

 check() {
-  cd "cli-${pkgver}"
+  cd "cli-${_upstream_ver}"
   test "v$(./spicetify -v)" = "v${pkgver}" || exit 1
 }

 package() {
-  cd "cli-${pkgver}"
-  
+  cd "cli-${_upstream_ver}"
+
   # install everything to /opt
   install -Dm755 ./spicetify "${pkgdir}/opt/${pkgname}/spicetify"
   cp -r ./CustomApps "${pkgdir}/opt/${pkgname}/CustomApps"
-- 
2.53.0

HurricanePootis commented on 2026-03-27 22:47 (UTC)

@itsmeowdev

PKGBUILDs are not allowed to have hyphens in their pkgver.