- #!/bin/bash
- # Creates a .deb package for searx-qt
- # requires: python3-stdeb
- # stdeb license: MIT
- # stdeb source: https://github.com/astraw/stdeb
- #
- # run from: searx-qt root (where setup.py is).
- python3 setup.py --command-packages=stdeb.command bdist_deb
- exit $?
|