2015-09-22 19:29:26 +02:00
|
|
|
#!/usr/bin/env bash
|
2014-07-07 21:59:26 +02:00
|
|
|
#
|
|
|
|
# This script assumes a linux environment
|
|
|
|
|
2015-04-18 19:09:49 +02:00
|
|
|
echo "*** uBlock0.opera: Creating web store package"
|
2014-12-13 23:11:22 +01:00
|
|
|
|
2015-04-18 19:09:49 +02:00
|
|
|
DES=dist/build/uBlock0.opera
|
2017-11-10 17:36:55 +01:00
|
|
|
rm -rf $DES
|
2014-12-13 23:11:22 +01:00
|
|
|
mkdir -p $DES
|
|
|
|
|
2019-07-03 15:40:12 +02:00
|
|
|
echo "*** uBlock0.opera: copying common files"
|
|
|
|
bash ./tools/copy-common-files.sh $DES
|
2015-03-22 21:16:27 +01:00
|
|
|
|
2017-11-10 17:36:55 +01:00
|
|
|
# Opera-specific
|
2015-02-09 21:23:27 +01:00
|
|
|
cp platform/opera/manifest.json $DES/
|
2018-08-24 15:38:00 +02:00
|
|
|
rm -r $DES/_locales/az
|
2016-02-22 15:01:37 +01:00
|
|
|
rm -r $DES/_locales/cv
|
2014-12-16 17:16:44 +01:00
|
|
|
rm -r $DES/_locales/hi
|
2020-06-04 14:38:44 +02:00
|
|
|
rm -r $DES/_locales/hy
|
2017-06-08 14:43:18 +02:00
|
|
|
rm -r $DES/_locales/ka
|
2018-01-31 18:49:23 +01:00
|
|
|
rm -r $DES/_locales/kk
|
2014-12-16 17:16:44 +01:00
|
|
|
rm -r $DES/_locales/mr
|
2018-08-24 15:38:00 +02:00
|
|
|
rm -r $DES/_locales/th
|
2014-12-18 10:47:14 +01:00
|
|
|
|
2019-02-01 14:20:43 +01:00
|
|
|
# Removing WASM modules until I receive an answer from Opera people: Opera's
|
|
|
|
# uploader issue an error for hntrie.wasm and this prevents me from
|
|
|
|
# updating uBO in the Opera store. The modules are unused anyway for
|
|
|
|
# Chromium- based browsers.
|
|
|
|
rm $DES/js/wasm/*.wasm
|
|
|
|
rm $DES/js/wasm/*.wat
|
|
|
|
rm $DES/lib/lz4/*.wasm
|
|
|
|
rm $DES/lib/lz4/*.wat
|
2019-03-13 15:12:09 +01:00
|
|
|
rm $DES/lib/publicsuffixlist/wasm/*.wasm
|
|
|
|
rm $DES/lib/publicsuffixlist/wasm/*.wat
|
2019-02-01 14:20:43 +01:00
|
|
|
|
2017-11-10 17:36:55 +01:00
|
|
|
echo "*** uBlock0.opera: Generating meta..."
|
|
|
|
python tools/make-opera-meta.py $DES/
|
|
|
|
|
2015-04-18 19:09:49 +02:00
|
|
|
echo "*** uBlock0.opera: Package done."
|