OBS: add workaround for limesuite 23.10 release

The previous workaround for building on debian 12 is not needed anymore,
as the related patch has been merged. Replace it with a new workaround
needed for building the limesuite 23.10 release.

Change-Id: I569642ebb13ac3eb3e241642e299be0a0a2ab15d
diff --git a/scripts/obs/lib/srcpkg.py b/scripts/obs/lib/srcpkg.py
index 9476d82..05a705f 100644
--- a/scripts/obs/lib/srcpkg.py
+++ b/scripts/obs/lib/srcpkg.py
@@ -124,10 +124,12 @@
 
 
 def prepare_project_limesuite():
-    """ Fix Debian 12 compat, until this is merged and in the next release:
-        https://github.com/myriadrf/LimeSuite/pull/381 """
-    lib.run_cmd(["sed", "s/libwxgtk3.0-gtk3-dev,$/libwxgtk3.0-gtk3-dev | libwxgtk3.2-dev,/g",
-                 "-i", "debian/control"], cwd=lib.git.get_repo_path("limesuite"))
+    """ Fix bug in 23.10: https://github.com/myriadrf/LimeSuite/pull/386 """
+    lib.run_cmd(["mv", "-v",
+                 "liblimesuite22.09-1.install",
+                 "liblimesuite23.10-1.install"],
+                cwd=f"{lib.git.get_repo_path('limesuite')}/debian",
+                check=False)
 
 
 def run_generate_build_dep(project):