1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00
uBlock/tools/make-chromium.sh

33 lines
874 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# This script assumes a linux environment
echo "*** uBlock0.chromium: Creating web store package"
DES=dist/build/uBlock0.chromium
rm -rf $DES
mkdir -p $DES
echo "*** uBlock0.chromium: copying common files"
bash ./tools/copy-common-files.sh $DES
2017-11-10 17:36:55 +01:00
# Chrome store-specific
2018-02-15 23:25:38 +01:00
cp -R $DES/_locales/nb $DES/_locales/no
echo "*** uBlock0.chromium: Generating meta..."
python tools/make-chromium-meta.py $DES/
2015-01-14 08:51:16 +01:00
if [ "$1" = all ]; then
echo "*** uBlock0.chromium: Creating plain package..."
pushd $(dirname $DES/) > /dev/null
zip uBlock0.chromium.zip -qr $(basename $DES/)/*
popd > /dev/null
elif [ -n "$1" ]; then
echo "*** uBlock0.chromium: Creating versioned package..."
pushd $(dirname $DES/) > /dev/null
zip uBlock0_"$1".chromium.zip -qr $(basename $DES/)/*
popd > /dev/null
2015-01-14 08:51:16 +01:00
fi
echo "*** uBlock0.chromium: Package done."