mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
9fa05aa7c4
All the assets which are not selected by default out-of-the-box will be converted into an empty file. This is a first step, the final step will be to removed completely the files from the package once everybody is using v1.1.0.0+.
35 lines
686 B
Bash
Executable File
35 lines
686 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock0.opera: Creating web store package"
|
|
echo "*** uBlock0.opera: Copying files"
|
|
|
|
DES=dist/build/uBlock0.opera
|
|
rm -r $DES
|
|
mkdir -p $DES
|
|
|
|
cp -R assets $DES/
|
|
./tools/fix-3p-assets.sh $DES
|
|
rm $DES/assets/*.sh
|
|
cp -R src/css $DES/
|
|
cp -R src/img $DES/
|
|
cp -R src/js $DES/
|
|
cp -R src/lib $DES/
|
|
cp -R src/_locales $DES/
|
|
|
|
cp src/*.html $DES/
|
|
cp platform/chromium/*.js $DES/js/
|
|
cp -R platform/chromium/img $DES/
|
|
|
|
cp platform/opera/manifest.json $DES/
|
|
cp LICENSE.txt $DES/
|
|
|
|
rm -r $DES/_locales/hi
|
|
rm -r $DES/_locales/mr
|
|
rm -r $DES/_locales/sl
|
|
rm -r $DES/_locales/sr
|
|
rm -r $DES/_locales/ta
|
|
|
|
echo "*** uBlock0.opera: Package done."
|