From c34f33f91f90ff10fb8761b88b701a3afb7358d9 Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Thu, 21 Mar 2024 16:02:53 -0300 Subject: flac: Fix missing Libtool output Part-of: --- recipes/flac.recipe | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/recipes/flac.recipe b/recipes/flac.recipe index 613edca2..88562527 100644 --- a/recipes/flac.recipe +++ b/recipes/flac.recipe @@ -1,5 +1,5 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -from cerbero.utils import shell +from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): @@ -35,3 +35,8 @@ class Recipe(recipe.Recipe): if self.config.target_platform == Platform.WINDOWS: # Newer MinGW requires this define for sscanf in stdio.h self.append_env('CFLAGS', '-D__USE_MINGW_ANSI_STDIO=1') + + def post_install(self): + # Meson does not generate la files + LibtoolLibrary('libFLAC', None, None, None, self.config.libdir, self.config.target_platform).save() + super().post_install() -- cgit v1.2.3