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