From 07da14457da4cbb41fe021a784b5e860d536f06e Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Thu, 29 Dec 2022 16:00:21 +0100 Subject: [PATCH] fluidlite, disable static library (#7697) --- media-sound/fluidlite/fluidlite-1.0.9.recipe | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/media-sound/fluidlite/fluidlite-1.0.9.recipe b/media-sound/fluidlite/fluidlite-1.0.9.recipe index d05e3c65f..9bbdc5478 100644 --- a/media-sound/fluidlite/fluidlite-1.0.9.recipe +++ b/media-sound/fluidlite/fluidlite-1.0.9.recipe @@ -14,7 +14,7 @@ implemented externally." HOMEPAGE="https://github.com/divideconcept/FluidLite" COPYRIGHT="2016 Robin Lobel" LICENSE="GNU LGPL v2.1" -REVISION="1" +REVISION="2" srcGitRev="e64b4b3161cab212fffe7d1d3fb1c05750c363cc" SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz" CHECKSUM_SHA256="b6c4bff689bfd2b8e57b771640da019ee6cf3580a96ddced3954f9f84b66410f" @@ -61,17 +61,18 @@ BUILD_PREREQUIRES=" BUILD() { - cmake -DCMAKE_BUILD_TYPE=Release \ - $cmakeDirArgs \ - -DENABLE_SF3=YES \ - -DSTB_VORBIS=NO . - - make $jobArgs + cmake -Bbuild -S. \ + -DCMAKE_BUILD_TYPE=Release \ + $cmakeDirArgs \ + -DFLUIDLITE_BUILD_STATIC:BOOL=OFF \ + -DENABLE_SF3=YES \ + -DSTB_VORBIS=NO + make -C build $jobArgs } INSTALL() { - make install + make -C build install prepareInstalledDevelLib libfluidlite fixPkgconfig