spotifyd: fix ftbfs

This commit is contained in:
Andrew Benson 2024-07-29 11:07:02 -05:00
parent 92430c78a5
commit edb6db3f75
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'spotifyd'
pkgname=spotifyd
version=0.3.5
revision=2
revision=3
archs="x86_64* i686* aarch64* arm*" # ring
build_style=cargo
configure_args="--no-default-features"
@ -31,3 +31,7 @@ _features+="$(vopt_if portaudio ',portaudio_backend')"
if [ "$_features" ]; then
configure_args+=" --features $_features"
fi
pre_configure() {
cargo update --package rustc-serialize@0.3.24 --precise 0.3.25
}