1
0
Fork 0
libreoffice/oox/source/drawingml/customshapes/generate.sh
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

38 lines
1.2 KiB
Bash
Executable file

#!/usr/bin/env bash
# This script is used to generate the custom shape presets
# We want to exit on errors...
set -o errexit
# oox needs to be build with dbglevel=2 so that OSL_DEBUG_LEVEL=2 is defined.
make oox.clean && make oox dbglevel=2
# This reads the
# oox/source/drawingml/customshapes/presetShapeDefinitions.xml file.
# It will produce the file
# oox/source/drawingml/customshapes/pptx/cshape-all.ppx and a whole
# bunch of other files that aren't needed further.
(cd oox/source/drawingml/customshapes && ./generatePresetsPPTXs.pl)
# Then load it and store the debugging output.
# We need only the SAL_INFO output with tag "oox.csdata", plus stderr
# for PropertyMap::dumpData() output.
SAL_LOG='+INFO.oox.csdata-WARN' instdir/program/soffice --headless --convert-to odp --outdir oox/source/drawingml/customshapes/ oox/source/drawingml/customshapes/pptx/cshape-all.pptx > oox/source/drawingml/customshapes/custom-shapes.log 2>&1
# Now run a script that reads the above log file and generates the
# oox-drawingml-cs-presets data:
(cd oox/source/drawingml/customshapes && ./generatePresetsData.pl)
echo
echo "To see what has been done, run git diff --patience oox/source/drawingml"
echo