1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 10:24:59 +12:00
uMatrix/tools/make-firefox.sh

38 lines
841 B
Bash
Raw Normal View History

#!/bin/bash
#
# This script assumes a linux environment
2015-01-14 20:51:16 +13:00
echo "*** uBlock.firefox: Copying files"
2015-01-14 20:51:16 +13:00
DES=dist/build/uBlock.firefox
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/
2015-01-14 20:51:16 +13:00
echo "*** uBlock.firefox: Generating meta..."
python tools/make-firefox-meta.py $DES/
if [ "$1" = all ]; then
2015-01-14 20:51:16 +13:00
echo "*** uBlock.firefox: Creating package..."
pushd $DES/
zip ../uBlock.firefox.xpi -qr *
popd
fi
2015-01-14 01:55:45 +13:00
2015-01-14 20:51:16 +13:00
echo "*** uBlock.firefox: Package done."