mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
a4aced69dc
Though Firefox shares a lot of WebExtensions code with Chromium,
these platforms have their own specific code paths, for various
reasons.
The reorganization here makes it clear that Chromium platform is
just one flavor of WebExtensions, and as such all Chromium-specific
code paths should no longer be automatically pulled by other
platforms where these code paths are not needed.
Given that the filepath of many files changed, here is the
parent commit to quickly browse back to the previous directory
layout:
ec7db30b2f
43 lines
1.1 KiB
Bash
Executable File
43 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock0.firefox: Creating web store package"
|
|
|
|
BLDIR=dist/build
|
|
DES="$BLDIR"/uBlock0.firefox
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
echo "*** uBlock0.firefox: Copying common files"
|
|
bash ./tools/copy-common-files.sh $DES
|
|
|
|
# Firefox-specific
|
|
echo "*** uBlock0.firefox: Copying firefox-specific files"
|
|
cp platform/firefox/*.json $DES/
|
|
cp platform/firefox/*.js $DES/js/
|
|
|
|
# Firefox store-specific
|
|
cp -R $DES/_locales/nb $DES/_locales/no
|
|
|
|
# Firefox/webext-specific
|
|
rm $DES/img/icon_128.png
|
|
|
|
echo "*** uBlock0.firefox: Generating meta..."
|
|
python tools/make-firefox-meta.py $DES/
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** uBlock0.firefox: Creating package..."
|
|
pushd $DES > /dev/null
|
|
zip ../$(basename $DES).xpi -qr *
|
|
popd > /dev/null
|
|
elif [ -n "$1" ]; then
|
|
echo "*** uBlock0.firefox: Creating versioned package..."
|
|
pushd $DES > /dev/null
|
|
zip ../$(basename $DES).xpi -qr *
|
|
popd > /dev/null
|
|
mv "$BLDIR"/uBlock0.firefox.xpi "$BLDIR"/uBlock0_"$1".firefox.xpi
|
|
fi
|
|
|
|
echo "*** uBlock0.firefox: Package done."
|