burlesco/Makefile

48 lines
1.5 KiB
Makefile

SHELL:=/bin/bash
BROWSERS=chromium firefox
DIST_DIR=dist
CRX3_KEY=burlesco-pkcs8-key.pem
.PHONY: all clean lint pre-build build
all: clean lint pre-build
clean:
rm -rf "$(DIST_DIR)"
lint:
find . -name '*.json' -exec python -c 'import json; json.load(open("{}"))' \;
npx eslint webext
pre-build: clean
set -e ; \
for i in $(BROWSERS) ; do \
SRC_DIR="$(DIST_DIR)/$$i/src" ; \
mkdir -p "$$SRC_DIR" ; \
cp -r webext/* "$$SRC_DIR" ; \
if [ $$i != "firefox" ]; then \
perl -0pe 's/,\s+"applications": \{(.*?\}){2}//s' \
webext/manifest.json > "$$SRC_DIR/manifest.json" ; \
else \
perl -0pe 's/,\s+"update_url": "https:\/\/burlesco.github.io\/burlesco-update\/chromium.xml"//s' \
webext/manifest.json > "$$SRC_DIR/manifest.json" ; \
fi ; \
done
build: pre-build
set -e ; \
for i in $(BROWSERS) ; do \
echo $$i; \
DIR="$(DIST_DIR)/$$i" ; \
FILE=burlesco-$$i.zip ; \
if [ $$i = "chromium" ]; then \
if [ ! -f "$(CRX3_KEY)" ]; then \
openssl genpkey -out "$(CRX3_KEY)" -algorithm RSA -pkeyopt rsa_keygen_bits:2048 2>/dev/null ; \
fi ; \
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" ; \
fi ; \
done