2014-11-24 12:00:27 -07:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This script assumes a linux environment
|
|
|
|
|
2015-01-14 00:51:16 -07:00
|
|
|
echo "*** uBlock.firefox: Copying files"
|
2014-12-18 02:47:14 -07:00
|
|
|
|
2015-01-14 00:51:16 -07:00
|
|
|
DES=dist/build/uBlock.firefox
|
2015-02-05 15:13:39 -07:00
|
|
|
rm -rf $DES
|
2014-11-24 12:00:27 -07:00
|
|
|
mkdir -p $DES
|
2014-12-18 02:47:14 -07:00
|
|
|
|
2014-11-24 12:00:27 -07:00
|
|
|
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/
|
2015-02-06 05:56:59 -07:00
|
|
|
mv $DES/img/icon_128.png $DES/icon.png
|
2014-11-24 12:00:27 -07:00
|
|
|
cp platform/firefox/vapi-*.js $DES/js/
|
|
|
|
cp platform/firefox/bootstrap.js $DES/
|
2014-12-18 02:47:14 -07:00
|
|
|
cp platform/firefox/frame*.js $DES/
|
2014-11-24 12:00:27 -07:00
|
|
|
cp platform/firefox/chrome.manifest $DES/
|
|
|
|
cp platform/firefox/install.rdf $DES/
|
2015-03-03 00:58:35 -07:00
|
|
|
cp platform/firefox/*.xul $DES/
|
2014-12-18 02:47:14 -07:00
|
|
|
cp LICENSE.txt $DES/
|
2014-11-24 12:00:27 -07:00
|
|
|
|
2015-01-14 00:51:16 -07:00
|
|
|
echo "*** uBlock.firefox: Generating meta..."
|
2014-12-16 09:02:26 -07:00
|
|
|
python tools/make-firefox-meta.py $DES/
|
2014-11-24 12:00:27 -07:00
|
|
|
|
2015-01-13 07:28:53 -07:00
|
|
|
if [ "$1" = all ]; then
|
2015-01-14 00:51:16 -07:00
|
|
|
echo "*** uBlock.firefox: Creating package..."
|
2015-01-13 07:28:53 -07:00
|
|
|
pushd $DES/
|
|
|
|
zip ../uBlock.firefox.xpi -qr *
|
|
|
|
popd
|
|
|
|
fi
|
2015-01-13 05:55:45 -07:00
|
|
|
|
2015-01-14 00:51:16 -07:00
|
|
|
echo "*** uBlock.firefox: Package done."
|