You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
857 B
Bash
40 lines
857 B
Bash
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock_xpi: Copying files"
|
|
|
|
# use underscore instead of a dot!
|
|
DES=dist/build/uBlock_xpi
|
|
rm -r $DES
|
|
mkdir -p $DES
|
|
|
|
cp -R assets $DES/
|
|
rm $DES/assets/*.sh
|
|
cp -R src/css $DES/
|
|
cp -R src/img $DES/
|
|
cp -R src/js $DES/
|
|
cp -R src/lib $DES/
|
|
cp -R src/_locales $DES/
|
|
cp src/*.html $DES/
|
|
mv $DES/img/icon_128.png $DES/icon.png
|
|
cp platform/firefox/vapi-*.js $DES/js/
|
|
cp platform/firefox/bootstrap.js $DES/
|
|
cp platform/firefox/frame*.js $DES/
|
|
cp platform/firefox/chrome.manifest $DES/
|
|
cp platform/firefox/install.rdf $DES/
|
|
cp LICENSE.txt $DES/
|
|
|
|
echo "*** uBlock_xpi: Generating meta..."
|
|
python tools/make-firefox-meta.py $DES/
|
|
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** uBlock_xpi: Creating package..."
|
|
pushd $DES/
|
|
zip ../uBlock.firefox.xpi -qr *
|
|
popd
|
|
fi
|
|
|
|
echo "*** uBlock_xpi: Package done."
|