2021-07-31 20:49:32 +02:00
|
|
|
#!/usr/bin/env bash
|
2019-01-20 18:22:40 +01:00
|
|
|
#
|
|
|
|
# This script assumes a linux environment
|
|
|
|
|
2021-07-31 23:34:25 +02:00
|
|
|
set -e
|
|
|
|
|
2019-01-20 18:22:40 +01:00
|
|
|
echo "*** uBlock0.thunderbird: Creating web store package"
|
|
|
|
|
|
|
|
BLDIR=dist/build
|
|
|
|
DES="$BLDIR"/uBlock0.thunderbird
|
|
|
|
rm -rf $DES
|
|
|
|
mkdir -p $DES
|
|
|
|
|
2019-07-03 15:40:12 +02:00
|
|
|
echo "*** uBlock0.thunderbird: copying common files"
|
|
|
|
bash ./tools/copy-common-files.sh $DES
|
2019-01-20 18:22:40 +01:00
|
|
|
|
2021-07-16 16:06:58 +02:00
|
|
|
echo "*** uBlock0.firefox: Copying firefox-specific files"
|
2021-07-25 16:55:35 +02:00
|
|
|
cp platform/firefox/*.js $DES/js/
|
2019-01-20 18:22:40 +01:00
|
|
|
|
2021-07-16 16:06:58 +02:00
|
|
|
echo "*** uBlock0.firefox: Copying thunderbird-specific files"
|
|
|
|
cp platform/thunderbird/manifest.json $DES/
|
|
|
|
|
|
|
|
# Firefox store-specific
|
|
|
|
cp -R $DES/_locales/nb $DES/_locales/no
|
2019-01-20 18:22:40 +01:00
|
|
|
|
|
|
|
# Firefox/webext-specific
|
|
|
|
rm $DES/img/icon_128.png
|
|
|
|
|
|
|
|
echo "*** uBlock0.thunderbird: Generating meta..."
|
2022-06-10 17:16:49 +02:00
|
|
|
python3 tools/make-firefox-meta.py $DES/
|
2019-01-20 18:22:40 +01:00
|
|
|
|
|
|
|
if [ "$1" = all ]; then
|
|
|
|
echo "*** uBlock0.thunderbird: Creating package..."
|
|
|
|
pushd $DES > /dev/null
|
|
|
|
zip ../$(basename $DES).xpi -qr *
|
|
|
|
popd > /dev/null
|
|
|
|
elif [ -n "$1" ]; then
|
|
|
|
echo "*** uBlock0.thunderbird: Creating versioned package..."
|
|
|
|
pushd $DES > /dev/null
|
|
|
|
zip ../$(basename $DES).xpi -qr *
|
|
|
|
popd > /dev/null
|
|
|
|
mv "$BLDIR"/uBlock0.thunderbird.xpi "$BLDIR"/uBlock0_"$1".thunderbird.xpi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "*** uBlock0.thunderbird: Package done."
|