burlesco/Makefile

46 lines
1.4 KiB
Makefile
Raw Permalink Normal View History

2017-11-25 11:29:06 -08:00
SHELL:=/bin/bash
BROWSERS=chromium firefox
2017-11-25 11:29:06 -08:00
DIST_DIR=dist
CRX3_KEY=burlesco-pkcs8-key.pem
.PHONY: all clean lint pre-build build
all: clean lint pre-build
2017-11-25 11:29:06 -08:00
clean:
rm -rf "$(DIST_DIR)"
2017-11-25 11:29:06 -08:00
lint:
set -e ; \
find . -path ./node_modules -prune -false -o -name '*.json' -exec python -c 'import json; json.load(open("{}"))' \; ;\
npx eslint src;
pre-build: clean
2017-11-25 11:29:06 -08:00
set -e ; \
for i in $(BROWSERS) ; do \
SRC_DIR="$(DIST_DIR)/$$i/src" ; \
mkdir -p "$$SRC_DIR" ; \
2019-06-22 18:26:02 -07:00
cp -r src/* "$$SRC_DIR" ; \
2017-11-25 11:29:06 -08:00
if [ $$i != "firefox" ]; then \
perl -0pe 's/,\s+"applications": \{(.*?\}){2}//s' \
2019-06-22 18:26:02 -07:00
src/manifest.json > "$$SRC_DIR/manifest.json" ; \
else \
perl -0pe 's/,\s+"update_url": "https:\/\/burlesco.github.io\/burlesco-update\/chromium.xml"//s' \
2019-06-22 18:26:02 -07:00
src/manifest.json > "$$SRC_DIR/manifest.json" ; \
2017-11-25 11:29:06 -08:00
fi ; \
done
build: pre-build
2017-11-25 11:29:06 -08:00
set -e ; \
for i in $(BROWSERS) ; do \
echo $$i; \
2017-11-25 11:29:06 -08:00
DIR="$(DIST_DIR)/$$i" ; \
FILE=burlesco-$$i.zip ; \
if [ $$i = "chromium" ]; then \
zip -jr9X "$$DIR/$$FILE" $$DIR/src/* ; \
cat "$$DIR/$$FILE" | crx3 --crxPath="$$DIR/burlesco-chromium.crx" \
--keyPath="$(CRX3_KEY)" ; \
else \
zip -j "$$DIR/$$FILE" $$DIR/src/* ; \
web-ext sign --source-dir="$$DIR/src/" \
--artifacts-dir="$$DIR/" \
--api-key="$$mozilla_api_key" \
--api-secret="$$mozilla_api_secret" ; \
mv "$$(ls $$DIR/burlesco*.xpi)" "$$DIR/burlesco-$$i.xpi" ; \
2017-11-25 11:29:06 -08:00
fi ; \
done