spotifast-bin
LOW
maintainer crmne
1 votes
scanned 2026-09-14 17:17:35.691721
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Carmine Paolino <carmine@paolino.me>
2
pkgname=spotifast-bin
3
pkgver=0.8.0
4
pkgrel=1
5
pkgdesc="Native Spotify client"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/crmne/spotifast"
8
license=('MIT')
9
install="${pkgname}.install"
10
# alsa-lib and libpulse are linked directly; the rest are dlopened by winit
11
# and glutin at startup, and this is a GUI-only application, so all of them
12
# have to be there for it to run at all.
13
depends=('dbus' 'alsa-lib' 'libpulse' 'libglvnd' 'libxkbcommon' 'wayland' 'libx11')
14
optdepends=('libxkbcommon-x11: keyboard handling in X11 sessions'
15
'pipewire-pulse: PipeWire as the PulseAudio server')
16
provides=("spotifast=$pkgver" "fastpotify=$pkgver" "fastpotify-bin=$pkgver")
17
conflicts=('fastpotify' 'fastpotify-bin' 'fastpotify-git' 'spotifast' 'spotifast-git')
18
replaces=('fastpotify-bin')
19
options=('!debug' '!strip')
20
_repo="https://github.com/crmne/spotifast"
21
source_x86_64=("${_repo}/releases/download/v${pkgver}/spotifast-v${pkgver}-x86_64-unknown-linux-gnu.tar.gz")
22
source_aarch64=("${_repo}/releases/download/v${pkgver}/spotifast-v${pkgver}-aarch64-unknown-linux-gnu.tar.gz")
23
sha256sums_x86_64=('279caf363897e165a9f95c03a34313a8afa16128032eba3bf6b2cb88723394a4')
24
sha256sums_aarch64=('a09e4b11a96f0a36dc4ba66a7ef5c4238741acd270f9124a97f70ccab116e359')
25
26
package() {
27
local target
28
case "$CARCH" in
29
x86_64) target="x86_64-unknown-linux-gnu" ;;
30
aarch64) target="aarch64-unknown-linux-gnu" ;;
31
esac
32
local dir="${srcdir}/fastpotify-v${pkgver}-${target}"
33
34
install -Dm755 "${dir}/fastpotify" "${pkgdir}/usr/bin/fastpotify"
35
ln -s fastpotify "${pkgdir}/usr/bin/spotifast"
36
install -Dm644 "${dir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
37
install -Dm644 "${dir}/README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
38
install -Dm644 "${dir}/packaging/applications/fastpotify.desktop" \
39
"${pkgdir}/usr/share/applications/fastpotify.desktop"
40
install -Dm644 "${dir}/packaging/icons/fastpotify.svg" \
41
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/fastpotify.svg"
42
# Older release fixtures predate the optional integration.
43
if [[ -d "${dir}/contrib/omarchy" ]]; then
44
install -Dm644 "${dir}/contrib/omarchy/spotifast.json.tpl" "${pkgdir}/usr/share/spotifast/omarchy/spotifast.json.tpl"
45
install -Dm755 "${dir}/contrib/omarchy/spotifast-theme" "${pkgdir}/usr/share/spotifast/omarchy/spotifast-theme"
46
fi
47
}
48
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-14 17:17:35 | Low | 1 |