Lines Matching +full:gen +full:- +full:pack +full:- +full:script
3 # Date: 2024-01-09
4 # This bash script generates a CMSIS-NN Software Pack:
7 set -o pipefail
9 # Set version of gen pack library
10 # For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
15 DEFAULT_ARGS=(-c "v")
17 # Pack warehouse directory - destination
22 # Temporary pack build directory,
27 # Specify directory names to be added to pack base directory
28 # An empty list defaults to all folders next to this script.
37 # Specify file names to be added to pack base directory
45 # Specify file names to be deleted from pack build directory
73 # - full Tag annotations, release descriptions, or commit messages (in order)
74 # - release Tag annotations, or release descriptions (in order)
75 # - tag Tag annotations only
78 # custom pre-processing steps
85 # before populating the pack build folder
89 # custom post-processing steps
95 # Set component version to match pack version
96 VERSION=$(git_describe "${CHANGELOG}" | sed -e "s/+g.*$//")
97 …sed -i -e "s/Cgroup=\"NN Lib\" Cversion=\"[^\"]*\"/Cgroup=\"NN Lib\" Cversion=\"${VERSION}\"/" ${P…
102 # Set GEN_PACK_LIB_PATH to use a specific gen-pack library root
104 if [[ -f "${GEN_PACK_LIB_PATH}/gen-pack" ]]; then
105 . "${GEN_PACK_LIB}/gen-pack"
107 . <(curl -sL "https://raw.githubusercontent.com/Open-CMSIS-Pack/gen-pack/main/bootstrap")