Package as .zip, convert linebreaks
[apps/agl-service-can-low-level.git] / tools / make_windows_package.sh
1 #!/bin/bash
2
3 # Run this script in the top nanopb directory to create a binary package
4 # for Windows users. This script is designed to run under MingW/MSYS bash
5 # and requires the following tools: git, make, zip, unix2dos
6
7 set -e
8 set -x
9
10 VERSION=`git describe --always`
11 DEST=dist/$VERSION
12
13 rm -rf $DEST
14 mkdir -p $DEST
15
16 # Export the files from newest commit
17 git archive HEAD | tar x -C $DEST
18
19 # Rebuild the Python .proto files
20 make -BC $DEST/generator/proto
21
22 # Make the nanopb generator available as a protoc plugin
23 cp $DEST/generator/nanopb_generator.py $DEST/generator/protoc-gen-nanopb.py
24
25 # Package the Python libraries
26 ( cd $DEST/generator; bbfreeze nanopb_generator.py protoc-gen-nanopb.py )
27 mv $DEST/generator/dist $DEST/generator-bin
28
29 # Remove temp file
30 rm $DEST/generator/protoc-gen-nanopb.py
31
32 # Package the protoc compiler
33 cp `which protoc`.exe $DEST/generator-bin/
34
35 # Convert line breaks for convenience
36 find $DEST -name '*.c' -o -name '*.h' -o -name '*.txt' \
37     -o -name '*.proto' -o -name '*.py' -o -name '*.options' \
38     -exec unix2dos '{}' \;
39
40 # Zip it all up
41 ( cd dist; zip -r $VERSION.zip $VERSION )