2021-07-31 18:49:32 +00:00
|
|
|
#!/usr/bin/env bash
|
2019-01-20 17:22:40 +00:00
|
|
|
#
|
|
|
|
|
# This script assumes a linux environment
|
|
|
|
|
|
2021-07-31 21:34:25 +00:00
|
|
|
set -e
|
|
|
|
|
|
2019-01-20 17:22:40 +00:00
|
|
|
echo "*** uBlock0.thunderbird: Creating web store package"
|
|
|
|
|
|
|
|
|
|
BLDIR=dist/build
|
|
|
|
|
DES="$BLDIR"/uBlock0.thunderbird
|
|
|
|
|
rm -rf $DES
|
|
|
|
|
mkdir -p $DES
|
|
|
|
|
|
2019-07-03 13:40:12 +00:00
|
|
|
echo "*** uBlock0.thunderbird: copying common files"
|
2023-05-04 23:20:18 +00:00
|
|
|
bash ./tools/copy-common-files.sh $DES
|
2019-01-20 17:22:40 +00:00
|
|
|
|
2021-07-16 14:06:58 +00:00
|
|
|
echo "*** uBlock0.firefox: Copying firefox-specific files"
|
2021-07-25 14:55:35 +00:00
|
|
|
cp platform/firefox/*.js $DES/js/
|
2019-01-20 17:22:40 +00:00
|
|
|
|
2021-07-16 14:06:58 +00: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 17:22:40 +00:00
|
|
|
|
|
|
|
|
# Firefox/webext-specific
|
|
|
|
|
rm $DES/img/icon_128.png
|
|
|
|
|
|
|
|
|
|
echo "*** uBlock0.thunderbird: Generating meta..."
|
2022-06-10 15:16:49 +00:00
|
|
|
python3 tools/make-firefox-meta.py $DES/
|
2019-01-20 17:22:40 +00: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."
|