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:
30
packaging/makedeb.sh
Executable file
30
packaging/makedeb.sh
Executable 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
|
||||
Reference in New Issue
Block a user