From edb6db3f757afbc4172790126390f5699a404406 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Mon, 29 Jul 2024 11:07:02 -0500 Subject: [PATCH] spotifyd: fix ftbfs --- srcpkgs/spotifyd/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/spotifyd/template b/srcpkgs/spotifyd/template index 6b9e29ec7e3..bb9c1b8f857 100644 --- a/srcpkgs/spotifyd/template +++ b/srcpkgs/spotifyd/template @@ -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 +}