1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-19 03:05:22 +02:00
uBlock/tools/make-firefox.sh
gorhill 9fa05aa7c4 changed "make" scripts for #602
All the assets which are not selected by default out-of-the-box will
be converted into an empty file. This is a first step, the final step
will be to removed completely the files from the package once everybody
is using v1.1.0.0+.
2015-08-17 09:29:11 -04:00

42 lines
984 B
Bash
Executable File

#!/bin/bash
#
# This script assumes a linux environment
echo "*** uBlock0.firefox: Copying files"
DES=dist/build/uBlock0.firefox
rm -rf $DES
mkdir -p $DES
cp -R assets $DES/
./tools/fix-3p-assets.sh $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/css/* $DES/css/
cp platform/firefox/vapi-*.js $DES/js/
cp platform/firefox/bootstrap.js $DES/
cp platform/firefox/frame*.js $DES/
cp -R platform/firefox/img $DES/
cp platform/firefox/chrome.manifest $DES/
cp platform/firefox/install.rdf $DES/
cp platform/firefox/*.xul $DES/
cp LICENSE.txt $DES/
echo "*** uBlock0.firefox: Generating meta..."
python tools/make-firefox-meta.py $DES/ "$2"
if [ "$1" = all ]; then
echo "*** uBlock0.firefox: Creating package..."
pushd $DES/
zip ../uBlock0.firefox.xpi -qr *
popd
fi
echo "*** uBlock0.firefox: Package done."