1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

webext as new target platform

This commit is contained in:
gorhill 2016-10-19 10:21:19 -04:00
parent e01a130bc5
commit 71066206e0

36
tools/make-webext.sh Executable file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env bash
#
# This script assumes a linux environment
echo "*** uBlock0.webext: Creating web store package"
echo "*** uBlock0.webext: Copying files"
DES=dist/build/uBlock0.webext
rm -rf $DES
mkdir -p $DES
bash ./tools/make-assets.sh $DES
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 -R $DES/_locales/nb $DES/_locales/no
cp src/*.html $DES/
cp platform/chromium/*.js $DES/js/
cp -R platform/chromium/img $DES/
cp platform/chromium/*.html $DES/
cp platform/chromium/*.json $DES/
cp platform/webext/polyfill.js $DES/js/
cp platform/webext/manifest.json $DES/
cp LICENSE.txt $DES/
if [ "$1" = all ]; then
echo "*** uBlock0.webext: Creating package..."
pushd $(dirname $DES/) > /dev/null
zip uBlock0.webext.zip -qr $(basename $DES/)/*
popd > /dev/null
fi
echo "*** uBlock0.webext: Package done."