4d4c4c943f6fe114d675a4d4f6d0227c60178de7
[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 cp `which MSVCR100.DLL` $DEST/generator-bin/
35 cp `which MSVCP100.DLL` $DEST/generator-bin/
36
37 # Convert line breaks for convenience
38 find $DEST -name '*.c' -o -name '*.h' -o -name '*.txt' \
39     -o -name '*.proto' -o -name '*.py' -o -name '*.options' \
40     -exec unix2dos '{}' \;
41
42 # Zip it all up
43 ( cd dist; zip -r $VERSION.zip $VERSION )