2020-11-29 09:42:20 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-11-29 11:23:07 +00:00
|
|
|
build_deb() {
|
|
|
|
# https://github.com/phusion/debian-packaging-for-the-modern-developer/tree/master/tutorial-1
|
2020-11-29 16:32:31 +00:00
|
|
|
# https://shallowsky.com/blog/programming/python-debian-packages-w-stdeb.html
|
|
|
|
sudo apt install python3-stdeb fakeroot python3-all dh-python
|
|
|
|
python3 setup.py --command-packages=stdeb.command bdist_deb
|
|
|
|
echo "buid_deb done"
|
2020-11-29 11:23:07 +00:00
|
|
|
}
|
2020-11-29 11:05:54 +00:00
|
|
|
|
2020-11-29 11:23:07 +00:00
|
|
|
build_deb &
|
2020-11-29 12:55:37 +00:00
|
|
|
# add more build targets here
|
2020-11-29 11:23:07 +00:00
|
|
|
|
|
|
|
wait
|