gen_deb.sh 262 B

12345678910
  1. #!/bin/bash
  2. # Creates a .deb package for searx-qt
  3. # requires: python3-stdeb
  4. # stdeb license: MIT
  5. # stdeb source: https://github.com/astraw/stdeb
  6. #
  7. # run from: searx-qt root (where setup.py is).
  8. python3 setup.py --command-packages=stdeb.command bdist_deb
  9. exit $?