installation path is now manually specified
This commit is contained in:
parent
60cfb2669c
commit
a84183375b
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,7 @@ echo "Building Package version: $VERSION"
|
||||||
# BE CAREFUL TO NOT BUILD IN A PYTHON VENV!
|
# BE CAREFUL TO NOT BUILD IN A PYTHON VENV!
|
||||||
|
|
||||||
# be sure to change version if needed!
|
# be sure to change version if needed!
|
||||||
fpm -s python --python-bin python3.9 --python-package-name-prefix python3 \
|
fpm -s python --python-bin python3 --python-package-name-prefix python3 \
|
||||||
-m '"Joel Klimont" <joel.klimont@comp-air.at>' \
|
-m '"Joel Klimont" <joel.klimont@comp-air.at>' \
|
||||||
--license 'proprietary' \
|
--license 'proprietary' \
|
||||||
--description 'Library for robot used in the competition' \
|
--description 'Library for robot used in the competition' \
|
||||||
|
@ -27,6 +27,7 @@ fpm -s python --python-bin python3.9 --python-package-name-prefix python3 \
|
||||||
-d "libatlas-base-dev" \
|
-d "libatlas-base-dev" \
|
||||||
-d "python3-numpy" \
|
-d "python3-numpy" \
|
||||||
-d "compsrv" \
|
-d "compsrv" \
|
||||||
|
--python-install-lib "/usr/local/lib/python3.9/dist-packages" \
|
||||||
-v $VERSION -t deb setup.py
|
-v $VERSION -t deb setup.py
|
||||||
|
|
||||||
if [ "$EXTRACT_PKG" == "1" ]; then
|
if [ "$EXTRACT_PKG" == "1" ]; then
|
||||||
|
|
Reference in a new issue