From 337c99434b2ee2d0437e6da11d0f60dada97a771 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 1 May 2023 04:17:19 -0400 Subject: [PATCH] audacious-plugins: fix cross for some reason, this fails to configure on cross with this option enabled probably caused by: https://github.com/audacious-media-player/audacious-plugins/commit/cbbd7743f7137f6a7434e93ef46151af0228a041 --- srcpkgs/audacious-plugins/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/audacious-plugins/template b/srcpkgs/audacious-plugins/template index 64b0bff6ae6..88cbc1671fc 100644 --- a/srcpkgs/audacious-plugins/template +++ b/srcpkgs/audacious-plugins/template @@ -24,6 +24,11 @@ build_options="gtk3 qt" build_options_default="qt" vopt_conflict gtk3 qt +if [ -n "$CROSS_BUILD" ]; then + # fails to configure: FileNotFoundError: [Errno 2] No such file or directory: '/usr/include/qt6' + configure_args+=" -Dhotkey=false" +fi + post_install() { vlicense COPYING }