diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 05:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 05:47:55 +0000 |
commit | 31d6ff6f931696850c348007241195ab3b2eddc7 (patch) | |
tree | 615cb1c57ce9f6611bad93326b9105098f379609 /tools/make-chromium.sh | |
parent | Initial commit. (diff) | |
download | ublock-origin-31d6ff6f931696850c348007241195ab3b2eddc7.tar.xz ublock-origin-31d6ff6f931696850c348007241195ab3b2eddc7.zip |
Adding upstream version 1.55.0+dfsg.upstream/1.55.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/make-chromium.sh')
-rwxr-xr-x | tools/make-chromium.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/make-chromium.sh b/tools/make-chromium.sh new file mode 100755 index 0000000..89172d5 --- /dev/null +++ b/tools/make-chromium.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash +# +# This script assumes a linux environment + +set -e + +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 + +# Chromium-specific +echo "*** uBlock0.chromium: Copying chromium-specific files" +cp platform/chromium/*.js $DES/js/ +cp platform/chromium/*.html $DES/ +cp platform/chromium/*.json $DES/ + +# Chrome store-specific +cp -R $DES/_locales/nb $DES/_locales/no + +echo "*** uBlock0.chromium: Generating meta..." +python3 tools/make-chromium-meta.py $DES/ + +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 +fi + +echo "*** uBlock0.chromium: Package done." |