From f29a17c84b305068ab8593cff00570d728e49496 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 9 Jan 2023 22:21:47 +0100 Subject: gnu: lib3mf: Remove bundled software. * gnu/packages/engineering.scm (lib3mf)[source](snippet): Delete bundled copies of libzip and zlib. Adjust header inclusions. --- gnu/packages/engineering.scm | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'gnu/packages/engineering.scm') diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 627be59fcd..c9fe587170 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -2305,7 +2305,25 @@ engineers for reverse engineers.") (snippet '(begin ;; Delete pre-compiled ACT. - (delete-file-recursively "AutomaticComponentToolkit/bin"))))) + (delete-file-recursively "AutomaticComponentToolkit/bin") + + ;; Remove bundled software. Preserve cpp-base64 as it has been + ;; modified and cannot easily be unbundled. + (for-each delete-file-recursively + '("Include/Libraries/libzip" + "Include/Libraries/zlib" + "Source/Libraries/libzip" + "Source/Libraries/zlib")) + + ;; Adjust header includes such that system headers are found. + (substitute* '("Include/Common/OPC/NMR_OpcPackageReader.h" + "Include/Common/Platform/NMR_ImportStream_ZIP.h" + "Include/Common/Platform/NMR_ExportStream_ZIP.h" + "Include/Common/Platform/NMR_ImportStream_Compressed.h" + "Include/Common/Platform/NMR_ExportStream_Compressed.h" + "Source/Common/Platform/NMR_PortableZIPWriterEntry.cpp") + (("Libraries/libzip/") "") + (("Libraries/zlib/") "")))))) (build-system cmake-build-system) (arguments `(#:configure-flags (list "-DUSE_INCLUDED_ZLIB=0" -- cgit v1.2.3