Skip to content

Commit

Permalink
webext as new target platform
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Oct 19, 2016
1 parent e01a130 commit 7106620
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions tools/make-webext.sh
Original file line number Diff line number Diff line change
@@ -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."

0 comments on commit 7106620

Please sign in to comment.