You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ -z $WAPPALYZER_ROOT ]
|
|
|
|
then
|
|
|
|
echo "\$WAPPALYZER_ROOT not set"
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
wappalyzer validate
|
|
|
|
|
|
|
|
echo "Prettifying apps.json..."
|
|
|
|
|
|
|
|
jsonlint -ist $'\t' $WAPPALYZER_ROOT/src/apps.json
|
|
|
|
|
|
|
|
wappalyzer links
|
|
|
|
|
|
|
|
# Mozilla Firefox
|
|
|
|
echo "Building Firefox driver..."
|
|
|
|
|
|
|
|
cfx xpi --pkgdir=$WAPPALYZER_ROOT/src/drivers/firefox --output-file=$WAPPALYZER_ROOT/build/wappalyzer_firefox.xpi
|
|
|
|
|
|
|
|
# Google Chrome
|
|
|
|
echo "Building Chrome driver..."
|
|
|
|
|
|
|
|
pushd $WAPPALYZER_ROOT/src/drivers/chrome > /dev/null
|
|
|
|
|
|
|
|
zip -qr $WAPPALYZER_ROOT/build/wappalyzer_chrome.zip .
|
|
|
|
|
|
|
|
popd > /dev/null
|
|
|
|
|
|
|
|
# Bookmarklet
|
|
|
|
echo "Building Bookmarklet driver..."
|
|
|
|
|
|
|
|
echo "var json =" > /tmp/bookmarklet
|
|
|
|
|
|
|
|
cat $WAPPALYZER_ROOT/src/apps.json >> /tmp/bookmarklet
|
|
|
|
|
|
|
|
echo -e ";\n\nwappalyzer.apps = json.apps;\nwappalyzer.categories = json.categories;" >> /tmp/bookmarklet
|
|
|
|
|
|
|
|
mv /tmp/bookmarklet $WAPPALYZER_ROOT/src/drivers/bookmarklet/js/apps.js
|
|
|
|
|
|
|
|
echo "Done. Builds have been created in $WAPPALYZER_ROOT/build."
|