From bd0c8a7b02d1c45c8b36b3df4e6557aa283b82fd Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 4 Mar 2022 16:26:54 +0200 Subject: [PATCH] aedi: update flac to 1.3.4 --- aedi/target/library_tier1.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/aedi/target/library_tier1.py b/aedi/target/library_tier1.py index ec28f4d7..eca7e9b1 100644 --- a/aedi/target/library_tier1.py +++ b/aedi/target/library_tier1.py @@ -74,9 +74,8 @@ class FlacTarget(CMakeStaticDependencyTarget): def prepare_source(self, state: BuildState): state.download_source( - 'https://ftp.osuosl.org/pub/xiph/releases/flac/flac-1.3.3.tar.xz', - '213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748', - patches='flac-add-cmake') + 'https://ftp.osuosl.org/pub/xiph/releases/flac/flac-1.3.4.tar.xz', + '8ff0607e75a322dd7cd6ec48f4f225471404ae2730d0ea945127b1355155e737') def configure(self, state: BuildState): opts = state.options @@ -84,7 +83,6 @@ class FlacTarget(CMakeStaticDependencyTarget): opts['BUILD_CXXLIBS'] = 'NO' opts['BUILD_EXAMPLES'] = 'NO' opts['OGG_PACKAGE'] = 'ogg' - opts['VERSION'] = '1.3.3' super().configure(state) @@ -92,8 +90,6 @@ class FlacTarget(CMakeStaticDependencyTarget): super().post_build(state) shutil.copytree(state.install_path / 'share/FLAC/cmake', state.install_path / 'lib/cmake/FLAC') - shutil.copytree(state.install_path / 'share/pkgconfig', state.install_path / 'lib/pkgconfig') - self.keep_module_target(state, 'FLAC::FLAC')