From 62cafa604b956b94e17adac75f81cfa2c6756ef5 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Tue, 7 Nov 2023 08:12:32 +0100 Subject: [PATCH] fluidsynth: Specify the version in the recipe file name Also unify the SRC_URI. Signed-off-by: Peter Kjellerstedt Signed-off-by: Khem Raj --- .../{fluidsynth_git.bb => fluidsynth_2.3.4.bb} | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) rename meta-multimedia/recipes-multimedia/fluidsynth/{fluidsynth_git.bb => fluidsynth_2.3.4.bb} (94%) diff --git a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_2.3.4.bb similarity index 94% rename from meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb rename to meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_2.3.4.bb index 26b1999439..dc05832e80 100644 --- a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb +++ b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_2.3.4.bb @@ -4,19 +4,18 @@ SECTION = "libs/multimedia" LICENSE = "LGPL-2.1-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=fc178bcd425090939a8b634d1d6a9594" -SRC_URI = "git://github.com/FluidSynth/fluidsynth.git;branch=master;protocol=https" -SRCREV = "5ecdc4568e45123216c6888892caad07918ef127" -S = "${WORKDIR}/git" -PV = "2.3.4" - -inherit cmake pkgconfig lib_package - DEPENDS = "glib-2.0" -SRC_URI += " \ +SRC_URI = " \ + git://github.com/FluidSynth/fluidsynth.git;branch=master;protocol=https \ file://0002-fluid_synth_nwrite_float-Allow-zero-pointer-for-left.patch \ file://0003-Use-ARM-NEON-accelaration-for-float-multithreaded-se.patch \ " +SRCREV = "5ecdc4568e45123216c6888892caad07918ef127" + +S = "${WORKDIR}/git" + +inherit cmake pkgconfig lib_package EXTRA_OECMAKE = "-Denable-floats=ON -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')}"