mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd debian/tmp
|
|
find usr/share/qgis-qt6/python -name "*.so" -printf "%p\n%p#\n" |
|
|
sed -e "/#$/ { s,_\(.*\).so#,\1/__init__.py,; s,/3d_p/,/_3d/,; }"
|
|
|
|
echo usr/share/qgis-qt6/python/qsci_apis/PyQGIS.api
|