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