1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2026-04-11 10:18:39 +02:00

Added packaging, dropped copy of C code

This commit is contained in:
Phil Howard
2017-10-17 15:09:19 +01:00
parent 3751865cb6
commit 16853dc4f2
35 changed files with 374 additions and 2500 deletions

30
packaging/makedeb.sh Executable file
View File

@@ -0,0 +1,30 @@
#!/bin/bash
gettools="no"
setup="yes"
cleanup="yes"
pkgfiles=( "build" "changes" "deb" "dsc" "tar.xz" )
if [ $gettools == "yes" ]; then
sudo apt-get update && sudo apt-get install build-essential debhelper devscripts dh-make dh-python dput gnupg
sudo apt-get install python-all python-setuptools python3-all python3-setuptools
fi
if [ $setup == "yes" ]; then
rm -R ../library/build ../library/debian &> /dev/null
cp -R ./debian/ ../library/
fi
cd ../library && debuild -aarmhf
for file in ${pkgfiles[@]}; do
mv ../*.$file ../packaging
done
if [ $cleanup == "yes" ]; then
debuild clean
rm -R ./build ./debian &> /dev/null
fi
exit 0