You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB

7 years ago
7 years ago
  1. #!/usr/bin/env bash
  2. #
  3. # This script assumes a linux environment
  4. echo "*** uMatrix.webext: Creating web store package"
  5. echo "*** uMatrix.webext: Copying files"
  6. DES=dist/build/uMatrix.webext
  7. rm -rf $DES
  8. mkdir -p $DES
  9. cp -R ./assets $DES/
  10. cp -R ./src/* $DES/
  11. cp platform/chromium/*.html $DES/
  12. cp platform/chromium/*.js $DES/js/
  13. cp -R platform/chromium/img/* $DES/img/
  14. cp LICENSE.txt $DES/
  15. cp platform/webext/polyfill.js $DES/js/
  16. cp platform/webext/vapi-cachestorage.js $DES/js/
  17. cp platform/webext/manifest.json $DES/
  18. # webext-specific
  19. rm $DES/options_ui.html
  20. rm $DES/js/options_ui.js
  21. echo "*** uMatrix.webext: Generating meta..."
  22. python tools/make-webext-meta.py $DES/
  23. if [ "$1" = all ]; then
  24. echo "*** uMatrix.webext: Creating package..."
  25. pushd $DES > /dev/null
  26. zip ../$(basename $DES).xpi -qr *
  27. popd > /dev/null
  28. fi
  29. echo "*** uMatrix.webext: Package done."