Include libprotoc
[apps/agl-service-can-low-level.git] / tools / make_linux_package.sh
index b0ad2dd..c48a807 100755 (executable)
@@ -24,6 +24,8 @@ mv $DEST/generator/dist $DEST/generator-bin
 
 # Package the protoc compiler
 cp `which protoc` $DEST/generator-bin/protoc.bin
+LIBPROTOC=$(ldd `which protoc` | grep -o '/.*libprotoc[^ ]*')
+cp $LIBPROTOC $DEST/generator-bin/
 cat > $DEST/generator-bin/protoc << EOF
 #!/bin/bash
 SCRIPTDIR=\$(dirname \$(readlink -f \$0))
@@ -36,3 +38,6 @@ chmod +x $DEST/generator-bin/protoc
 # Make the nanopb generator available as a protoc plugin
 ln -s nanopb-generator $DEST/generator-bin/protoc-gen-nanopb
 
+# Tar it all up
+( cd dist; tar -czf $VERSION.tar.gz $VERSION )
+