Protobuf prototype
This commit is contained in:
parent
e277a83c5f
commit
9b567b8c6c
119 changed files with 8599 additions and 0 deletions
47
client_s1/build_deb.sh
Executable file
47
client_s1/build_deb.sh
Executable file
|
@ -0,0 +1,47 @@
|
|||
##!/usr/bin/zsh
|
||||
export PYTHONDONTWRITEBYTECODE=1
|
||||
|
||||
# be sure to change version if needed!
|
||||
fpm -s python --python-bin python3 --python-pip pip3 --python-package-name-prefix python3 \
|
||||
-m '"Joel Klimont" <joel.klimont@gmail.com>' \
|
||||
--license 'proprietary' \
|
||||
--description 'Library for robot used in the competition' \
|
||||
--after-install postinstall.sh \
|
||||
--after-upgrade postinstall.sh \
|
||||
--deb-generate-changes \
|
||||
--deb-priority "optional" \
|
||||
--deb-systemd "complib.service" \
|
||||
-d "python3-pip" \
|
||||
-d "nginx" \
|
||||
-d "libnginx-mod-rtmp" \
|
||||
-d "libsystemd-dev" \
|
||||
-d "python3-systemd" \
|
||||
-d "gstreamer1.0-tools" \
|
||||
-d "gstreamer1.0-plugins-bad" \
|
||||
-d "gstreamer1.0-plugins-base" \
|
||||
-d "gstreamer1.0-plugins-good" \
|
||||
-d "gstreamer1.0-omx-rpi" \
|
||||
-d "gstreamer1.0-omx-rpi-config" \
|
||||
-d "opencv-dev" \
|
||||
-d "opencv-libs" \
|
||||
-d "opencv-licenses" \
|
||||
-d "opencv-main" \
|
||||
-d "opencv-python" \
|
||||
-d "opencv-scripts" \
|
||||
-d "libatlas-base-dev" \
|
||||
-d "pigpio" \
|
||||
-d "python-pigpio" \
|
||||
-d "python3-pigpio" \
|
||||
-d "python3-numpy" \
|
||||
-d "ffmpeg" \
|
||||
-v 0.4.1-1 -t deb setup.py
|
||||
|
||||
# --deb-changelog changelog \
|
||||
# --deb-upstream-changelog changelog \
|
||||
# --deb-field "Distribution: stable" \
|
||||
# --deb-dist "stable" \
|
||||
|
||||
#sudo apt purge python3-complib -y
|
||||
#sudo apt install ./python3-*
|
||||
#sudo apt search complib
|
||||
#ar vx ./python3*
|
Reference in a new issue