1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
uBlock/tools/make-chromium.sh
gorhill 9fa05aa7c4 changed "make" scripts for #602
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+.
2015-08-17 09:29:11 -04:00

36 lines
828 B
Bash
Executable File

#!/bin/bash
#
# This script assumes a linux environment
echo "*** uBlock0.chromium: Creating web store package"
echo "*** uBlock0.chromium: Copying files"
DES=dist/build/uBlock0.chromium
rm -rf $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 -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/manifest.json $DES/
cp LICENSE.txt $DES/
if [ "$1" = all ]; then
echo "*** uBlock0.chromium: Creating package..."
pushd $(dirname $DES/)
zip uBlock0.chromium.zip -qr $(basename $DES/)/*
popd
fi
echo "*** uBlock0.chromium: Package done."